diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-06-12 16:21:54 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-06-12 16:21:54 +0000 |
commit | edcc628289e0e54a98535f6e65e5edf6fdcc7122 (patch) | |
tree | 5e085af6ca8c6f92692263ccf439b4a0b917a139 /llvm/test/Scripts | |
parent | 12225eb68763e3b1a69fbc20c133e0ee0586be3f (diff) | |
download | bcm5719-llvm-edcc628289e0e54a98535f6e65e5edf6fdcc7122.tar.gz bcm5719-llvm-edcc628289e0e54a98535f6e65e5edf6fdcc7122.zip |
tests: Make macho-dump.bat actually work.
llvm-svn: 105891
Diffstat (limited to 'llvm/test/Scripts')
-rw-r--r-- | llvm/test/Scripts/macho-dump.bat | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/llvm/test/Scripts/macho-dump.bat b/llvm/test/Scripts/macho-dump.bat index e43c521f539..94859f9115b 100644 --- a/llvm/test/Scripts/macho-dump.bat +++ b/llvm/test/Scripts/macho-dump.bat @@ -1,3 +1,7 @@ @echo off -macho-dump %1 %2 %3 %4 %5 %6 %7 %8 %9 + +@rem The -t here is just to avoid infinite looping if %PYTHON_EXECUTABLE% isn't set +@rem for some reason. + +%PYTHON_EXECUTABLE% -t %LLVM_SRC_ROOT%\test\Scripts\macho-dump %1 %2 %3 %4 %5 %6 %7 %8 %9 |