[ld/testsuite] Fix pr2404 output.
authorChristophe Lyon <christophe.lyon@linaro.org>
Thu, 26 Apr 2018 13:44:33 +0000 (13:44 +0000)
committerChristophe Lyon <christophe.lyon@linaro.org>
Thu, 26 Apr 2018 13:44:33 +0000 (13:44 +0000)
2018-04-26  Christophe Lyon  <christophe.lyon@linaro.org>

* testsuite/ld-elf/pr2404b.c (main): Adjust printf to account for
new variable name.
* testsuite/ld-elf/pr2404.out: Adjust expected output accordingly.

ld/ChangeLog
ld/testsuite/ld-elf/pr2404.out
ld/testsuite/ld-elf/pr2404b.c

index 2b0eb1a..076b2fe 100644 (file)
@@ -1,3 +1,9 @@
+2018-04-26  Christophe Lyon  <christophe.lyon@linaro.org>
+
+       * testsuite/ld-elf/pr2404b.c (main): Adjust printf to account for
+       new variable name.
+       * testsuite/ld-elf/pr2404.out: Adjust expected output accordingly.
+
 2018-04-25  Christophe Lyon  <christophe.lyon@st.com>
 
        * testsuite/ld-arm/export-class.exp: Accept arm*-*-uclinuxfdpiceabi.
index d1aa5fe..987e528 100644 (file)
@@ -1,4 +1,4 @@
 times: -1
 times: 20
-time: 0
-time: 10
+time1: 0
+time1: 10
index 4bbc2b1..34c3c16 100644 (file)
@@ -14,7 +14,7 @@ main ()
 
   printf ("time1: %d\n", time1);
   time1 = 10;
-  printf ("time: %d\n", time1);
+  printf ("time1: %d\n", time1);
   bar ();
 
   return 0;