summaryrefslogtreecommitdiff
path: root/tests/invalid-elf.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/invalid-elf.sh')
-rwxr-xr-xtests/invalid-elf.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/invalid-elf.sh b/tests/invalid-elf.sh
index 0f020e8..c124501 100755
--- a/tests/invalid-elf.sh
+++ b/tests/invalid-elf.sh
@@ -6,12 +6,12 @@
# by a signal. This works because the exit code of processes that were
# killed by a signal is 128 plus the signal number.
killed_by_signal() {
- [ $1 -ge 128 ]
+ [ "$1" -ge 128 ]
}
# The directory containing all our input files.
-TEST_DIR=$(dirname $(readlink -f $0))/invalid-elf
+TEST_DIR=$(dirname "$(readlink -f "$0")")/invalid-elf
# Each test case is listed here. The names should roughly indicate
# what makes the given ELF file invalid.