PR testsuite/20771
authorjanis <janis@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 13 Jun 2012 22:55:56 +0000 (22:55 +0000)
committerjanis <janis@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 13 Jun 2012 22:55:56 +0000 (22:55 +0000)
* lib/dg-pch.exp (dg-flags-pch): Add flags to make compile lines in
test summary unique.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@188540 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/lib/dg-pch.exp

index 92bff75..2974fde 100644 (file)
@@ -1,5 +1,9 @@
 2012-06-13  Janis Johnson  <janisjo@codesourcery.com>
 
+       PR testsuite/20771
+       * lib/dg-pch.exp (dg-flags-pch): Add flags to make compile lines in
+       test summary unique.
+
        * lib/scanasm.exp (scan-assembler, scan-assembler-not, scan-hidden,
        scan-not-hiddent, scan-file, scan-file-not, scan-stack-usage,
        scan-stack-usage-not): Don't strip torture options from test name.
index 822a2b0..b1fadab 100644 (file)
@@ -50,14 +50,16 @@ proc dg-flags-pch { subdir test otherflags options suffix } {
            # Ensure that the PCH file is used, not the original header.
            file_on_host delete "$bname$suffix"
 
-           dg-test -keep-output $test "$otherflags $flags -I." ""
+           # The flags "-Dwith_PCH" and "-Dwithout_PCH" are to distinguish the
+           # two compiles in test summary lines.
+           dg-test -keep-output $test "$otherflags $flags -I. -Dwith_PCH" ""
            file_on_host delete "$bname$suffix.gch"
            if { !$have_errs } {
                if { [ file_on_host exists "$bname.s" ] } {
                    remote_upload host "$bname.s" "$bname.s-gch"
                    remote_download host "$bname.s-gch"
                    gcc_copy_files "[file rootname $test]${suffix}s" "$bname$suffix"
-                   dg-test -keep-output $test "$otherflags $flags -I." ""
+                   dg-test -keep-output $test "$otherflags $flags -I. -Dwithout_PCH" ""
                    remote_upload host "$bname.s"
                    set tmp [ diff "$bname.s" "$bname.s-gch" ]
                    if { $tmp == 0 } {
@@ -89,4 +91,4 @@ proc dg-flags-pch { subdir test otherflags options suffix } {
 
 proc dg-pch { subdir test options suffix } {
   return [dg-flags-pch $subdir $test "" $options $suffix]
-}
\ No newline at end of file
+}