summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPetr Machata <[email protected]>2010-09-15 15:55:10 +0200
committerPetr Machata <[email protected]>2010-09-15 15:55:10 +0200
commit1be2d0a3e9521a4d8310d87af8e84a6d71e7110d (patch)
treec96cca6023c92fe16acc6bc12062cabf01930e9b /tests
parent88f3d38340abb592f7e8bf9991a4479d447f631c (diff)
Only run low-level checks in dwarflint self-check
The reason being that high-level checks do and always have emitted a lot of output, mainly for big c++ binaries. The low-level checks should generally pass, and even if there are nits here and there, they should be minor and shouldn't flood the terminal.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/run-dwarflint-self.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/run-dwarflint-self.sh b/tests/run-dwarflint-self.sh
index 1f35889a..e83d8208 100755
--- a/tests/run-dwarflint-self.sh
+++ b/tests/run-dwarflint-self.sh
@@ -1,5 +1,5 @@
#! /bin/sh
-# Copyright (C) 2009 Red Hat, Inc.
+# Copyright (C) 2009, 2010 Red Hat, Inc.
# This file is part of Red Hat elfutils.
#
# Red Hat elfutils is free software; you can redistribute it and/or modify
@@ -30,7 +30,7 @@ runtest()
{
for file; do
if [ -f $file ]; then
- testrun ../dwarflint/dwarflint -q -i --gnu $file ||
+ testrun ../dwarflint/dwarflint -q -i --check=@low $file ||
{ echo "*** failure in $file"; status=1; }
fi
done