diff options
| author | Filip Strömbäck <filip.stromback@liu.se> | 2018-04-18 17:41:11 +0200 |
|---|---|---|
| committer | Filip Strömbäck <filip.stromback@liu.se> | 2018-04-18 17:41:11 +0200 |
| commit | 6ca20446c77fd6dec9ca10713a63233c97e7e977 (patch) | |
| tree | 5a13f8923129321a6cab92ebe90399814da3adb5 | |
| parent | f3e1dd764327c4d5361880c546bfa76baa97d32e (diff) | |
| download | pintos-rs-6ca20446c77fd6dec9ca10713a63233c97e7e977.tar.gz | |
Output the Pintos command line once more.
Signed-off-by: Filip Strömbäck <filip.stromback@liu.se>
| -rwxr-xr-x | src/utils/pintos | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/utils/pintos b/src/utils/pintos index 2d1d7f0..e0cc5ac 100755 --- a/src/utils/pintos +++ b/src/utils/pintos @@ -513,6 +513,7 @@ sub run_qemu { # When using isa-debug-exit, we can not exit QEMU cleanly. We exit with 0x30, which will make QEMU exit # with the code 0x30*2 + 1 = 97, and therefore we treat 97 as success as well. + print join (' ', @cmd), "\n"; my ($exit) = xsystem (@cmd); if (WIFEXITED($exit)) { $exit = WEXITSTATUS($exit); |
