aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorGerald Combs <gerald@zing.org>2017-09-09 09:21:10 -0700
committerGerald Combs <gerald@wireshark.org>2017-09-09 16:22:55 +0000
commitb9746b6833e0dc7d0a7f9afd1b3a5b80252d76b6 (patch)
treefdbce6818c4ddac33c529e7e41532b3814d9ff7e /tools
parent26a5cd2d7837a08f5d5c2f1b5abec34b4b22a596 (diff)
Redirect to /dev/null, not /devnull.
Change-Id: I9d14244cc14fac4d8857177686b9fd869d8a3b3c Reviewed-on: https://code.wireshark.org/review/23441 Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/test-common.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/test-common.sh b/tools/test-common.sh
index c2b0db697e..c0490516bf 100755
--- a/tools/test-common.sh
+++ b/tools/test-common.sh
@@ -127,7 +127,7 @@ export ASAN_OPTIONS=detect_leaks=0
CONFIGURED_WITH_ASAN=0
# If tshark is built with ASAN this will generate an error. We could
# also pass help=1 and look for help text.
-ASAN_OPTIONS=Invalid_Option_Flag $TSHARK -h > /devnull 2>&1
+ASAN_OPTIONS=Invalid_Option_Flag $TSHARK -h > /dev/null 2>&1
if [ $? -ne 0 ] ; then
CONFIGURED_WITH_ASAN=1
fi