From f1466d180bee2daf682d49215247f00e400d5bae Mon Sep 17 00:00:00 2001 From: Bernhard Voelker Date: Thu, 16 Oct 2014 12:23:04 +0200 Subject: tests: avoid false failure when comparing /proc files At least the MHz number in /proc/cpuinfo may change, thus leading to a false positive failure when comparing the expected against the actual output file. Use an invariant file instead: /proc/version. * tests/misc/head-c.sh: s/cpuinfo/version/ --- tests/misc/head-c.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/misc/head-c.sh b/tests/misc/head-c.sh index 807e96544..1015c2295 100755 --- a/tests/misc/head-c.sh +++ b/tests/misc/head-c.sh @@ -44,7 +44,7 @@ esac # Make sure it works on funny files in /proc and /sys. -for file in /proc/cpuinfo /sys/kernel/profiling; do +for file in /proc/version /sys/kernel/profiling; do if test -r $file; then cp -f $file copy && head -c -1 copy > exp1 || framework_failure_ -- cgit v1.2.3-54-g00ecf