|
From: Tom H. <th...@cy...> - 2005-01-16 11:05:09
|
CVS commit by thughes:
Anonymise fault addresses as they can change between different machines.
M +1 -0 .cvsignore 1.24
M +1 -1 blockfault.stderr.exp 1.2
M +1 -1 faultstatus.stderr.exp 1.2
M +4 -1 filter_stderr 1.5
M +1 -1 x86/filter_int 1.2
M +1 -1 x86/int.stderr.exp 1.2
--- valgrind/none/tests/.cvsignore #1.23:1.24
@@ -10,4 +10,5 @@
exec-sigmask
execve
+faultstatus
fcntl_setown
floored
--- valgrind/none/tests/blockfault.stderr.exp #1.1:1.2
@@ -3,4 +3,4 @@
Process terminating with default action of signal 11 (SIGSEGV)
Access not within mapped region at address 0x4D2
- at 0x804852D: main (blockfault.c:28)
+ at 0x........: main (blockfault.c:28)
--- valgrind/none/tests/faultstatus.stderr.exp #1.1:1.2
@@ -4,5 +4,5 @@
Test 2: PASS 3
Test 3: disInstr: unhandled instruction bytes: 0xF 0xB 0xC9 0xC3
- at 0x8048970: test4 (faultstatus.c:108)
+ at 0x........: test4 (faultstatus.c:108)
PASS 4
Test 4: PASS 5
--- valgrind/none/tests/filter_stderr #1.4:1.5
@@ -3,3 +3,6 @@
dir=`dirname $0`
-$dir/../../tests/filter_stderr_basic
+$dir/../../tests/filter_stderr_basic |
+
+# Anonymise addresses
+sed "s/at 0x[0-9A-Fa-f]*:/at 0x........:/g"
--- valgrind/none/tests/x86/filter_int #1.1:1.2
@@ -3,4 +3,4 @@
dir=`dirname $0`
-$dir/filter_stderr | $dir/../../../tests/filter_addresses
+$dir/filter_stderr | sed "s/at address 0x[0-9A-Fa-f]*/at address 0x......../g"
--- valgrind/none/tests/x86/int.stderr.exp #1.1:1.2
@@ -1,4 +1,4 @@
-disInstr: unhandled instruction bytes: 0x........ 0x........ 0x........ 0x........
+disInstr: unhandled instruction bytes: 0xCD 0x81 0x83 0xEC
at 0x........: main (int.c:5)
|