From dc67ecb7e2cadf988fb64fd4b1f1205eaf984222 Mon Sep 17 00:00:00 2001 From: Aditya Mandaleeka Date: Thu, 5 Jan 2017 15:06:39 -0800 Subject: [PATCH] Fix check for JIT dasm. Commit migrated from https://github.com/dotnet/coreclr/commit/235e2882e8b2c1b221e2ca6a0ac6b858968c4fc1 --- src/coreclr/tests/runtest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/coreclr/tests/runtest.sh b/src/coreclr/tests/runtest.sh index 1c67a70..b48cffb 100755 --- a/src/coreclr/tests/runtest.sh +++ b/src/coreclr/tests/runtest.sh @@ -1143,7 +1143,7 @@ if [ ! -z "$gcsimulator" ]; then export RunningGCSimulatorTests=1 fi -if [ ! -z "$jitdisasm" ]; then +if [[ ! "$jitdisasm" -eq 0 ]]; then echo "Running jit disasm" export RunningJitDisasm=1 fi -- 2.7.4