Skip to content

Commit f2f1e08

Browse files
A few test_updater tests no longer need a "diff -w".
1 parent 351ea90 commit f2f1e08

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

clang/test/3C/graphs.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: %S/3c-regtest.py --predefined-script common-diff-w %s -t %t --clang '%clang'
1+
// RUN: %S/3c-regtest.py --predefined-script common %s -t %t --clang '%clang'
22

33
#include <stdio.h>
44

clang/test/3C/ptr_array.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: %S/3c-regtest.py --predefined-script common-diff-w %s -t %t --clang '%clang'
1+
// RUN: %S/3c-regtest.py --predefined-script common %s -t %t --clang '%clang'
22

33
/* Tests for issue 60. Array initialization had not been implemented, so wild
44
pointer inside and array initializer did not cause the array to be an array

clang/test/3C/ptrptr.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: %S/3c-regtest.py --predefined-script common-diff-w %s -t %t --clang '%clang'
1+
// RUN: %S/3c-regtest.py --predefined-script common %s -t %t --clang '%clang'
22

33
#include <stddef.h>
44
#include <stddef.h>

clang/test/3C/test_updater.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ def process_smart(filename, diff):
111111
'funcptr3.c',
112112
'funcptr4.c',
113113
'graphs.c',
114+
'graphs.c',
114115
'graphs2.c',
115116
'gvar.c',
116117
'i1.c',
@@ -120,6 +121,8 @@ def process_smart(filename, diff):
120121
'inlinestructinfunc.c',
121122
'linkedlist.c',
122123
'malloc_array.c',
124+
'ptr_array.c',
125+
'ptrptr.c',
123126
'realloc.c',
124127
'realloc_complex.c',
125128
'refarrsubscript.c',
@@ -131,10 +134,7 @@ def process_smart(filename, diff):
131134
'valist.c',
132135
'cast.c']
133136

134-
need_diff = ['compound_literal.c',
135-
'graphs.c',
136-
'ptr_array.c',
137-
'ptrptr.c']
137+
need_diff = ['compound_literal.c']
138138

139139
b_tests = ['b10_allsafepointerstruct.c',
140140
'b11_calleestructnp.c',

0 commit comments

Comments
 (0)