about summary refs log tree commit diff
path: root/pkgs/development/tools/rust/cargo-show-asm/test-basic-x86_64.nix
blob: c0dd8b421b0a52deeed70eb5771da7564e6af727 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ runCommand, cargo, rustc, cargo-show-asm }:
runCommand "test-basic" {
  nativeBuildInputs = [ cargo rustc cargo-show-asm ];
} ''
  mkdir -p src
  cat >Cargo.toml <<EOF
[package]
name = "add"
version = "0.0.0"
EOF
  cat >src/lib.rs <<EOF
pub fn add(a: u32, b: u32) -> u32 { a + b }
EOF

  [[ "$(cargo asm add::add | tee /dev/stderr)" == *"lea eax, "* ]]
  [[ "$(cargo asm --mir add | tee /dev/stderr)" == *"= Add("* ]]
  touch $out
''