]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Also diff the U (undefined) symbols.
authorJulian Seward <jseward@acm.org>
Sun, 15 Dec 2002 02:05:02 +0000 (02:05 +0000)
committerJulian Seward <jseward@acm.org>
Sun, 15 Dec 2002 02:05:02 +0000 (02:05 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1376

coregrind/dosyms

index 4a46f01e6b7353efdfb3e94eab59bdead9c4da36..b7ba8503ec38d5ffcb0c4cecf5d4483b03c4abf2 100755 (executable)
@@ -6,10 +6,12 @@
 nm /lib/libpthread.so.0 | grep " T " | cut -c 10- > orig-T
 nm /lib/libpthread.so.0 | grep " D " | cut -c 10- > orig-D
 nm /lib/libpthread.so.0 | grep " W " | cut -c 10- > orig-W
+nm /lib/libpthread.so.0 | grep " U " | cut -c 10- > orig-U
 
 nm ./libpthread.so | grep " T " | cut -c 10- > mine-T
 nm ./libpthread.so | grep " D " | cut -c 10- > mine-D
 nm ./libpthread.so | grep " W " | cut -c 10- > mine-W
+nm ./libpthread.so | grep " U " | cut -c 10- > mine-U
 
 echo ========================== TEXT orig vs mine =========================
 sdiff -w 80 orig-T mine-T
@@ -22,3 +24,8 @@ echo
 echo ========================== DATA orig vs mine =========================
 sdiff -w 80 orig-D mine-D
 echo
+
+echo ========================== UNDF orig vs mine =========================
+sdiff -w 80 orig-U mine-U
+echo
+