Fixed cpuid regtest, which was broken by the switch to using the machine's real

CPUID.

Also added filters to Makefiles where missing;  "make regtest" was broken
within distributions created using "make dist", now fixed.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1709
This commit is contained in:
Nicholas Nethercote 2003-06-29 10:12:58 +00:00
parent c10bae9afe
commit 136c7fba2c
6 changed files with 14 additions and 6 deletions

View File

@ -3,8 +3,9 @@
## - lots more mmap/munmap/mremap/mprotect ones
##---------------------------------------------------------------------------
noinst_SCRIPTS = filter_allocs filter_leak_check_size filter_stderr \
filter_stderr_backtrace
noinst_SCRIPTS = filter_allocs filter_leak_check_size filter_mismatches \
filter_stderr filter_stderr_backtrace filter_pushfpopf \
filter_tronical
EXTRA_DIST = $(noinst_SCRIPTS) \
badaddrvalue.stderr.exp \

View File

@ -1,4 +1,4 @@
noinst_SCRIPTS = filter_stderr
noinst_SCRIPTS = filter_cpuid filter_none_discards filter_stderr
EXTRA_DIST = $(noinst_SCRIPTS) \
args.stderr.exp args.stdout.exp args.vgtest \

View File

@ -1,2 +1,2 @@
cpuid words (0): 0x1 0x756e6547 0x6c65746e 0x49656e69
cpuid words (1): 0x52b 0x0 0x0 0x8001bf
cpuid words (0): 0x........ 0x........ 0x........ 0x........
cpuid words (1): 0x........ 0x........ 0x........ 0x........

View File

@ -1 +1,2 @@
prog: cpuid
stdout_filter: filter_cpuid

6
none/tests/filter_cpuid Executable file
View File

@ -0,0 +1,6 @@
#! /bin/sh
dir=`dirname $0`
$dir/filter_stderr | $dir/../../tests/filter_addresses

View File

@ -2,7 +2,7 @@
SUBDIRS = . unused
noinst_SCRIPTS = \
vg_regtest
vg_regtest \
filter_addresses \
filter_discards \
filter_stderr_basic \