Skip to content

Commit c25f066

Browse files
vitalybukasr-tream
authored andcommitted
[test][msan] Remove redundant --check-prefixes
1 parent 19c1a5a commit c25f066

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

compiler-rt/test/msan/vararg_shadow.cpp

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -215,43 +215,43 @@ int main(int argc, char *argv[]) {
215215
}
216216

217217
TEST(char);
218-
// RUN: %run %t char 2>&1 | FileCheck %s --implicit-check-not="ArgShadow" --check-prefixes=CHECK
218+
// RUN: %run %t char 2>&1 | FileCheck %s --implicit-check-not="ArgShadow"
219219

220220
TEST(int);
221-
// RUN: %run %t int 2>&1 | FileCheck %s --implicit-check-not="ArgShadow" --check-prefixes=CHECK
221+
// RUN: %run %t int 2>&1 | FileCheck %s --implicit-check-not="ArgShadow"
222222

223223
TEST(void*);
224-
// RUN: %run %t "void*" 2>&1 | FileCheck %s --implicit-check-not="ArgShadow" --check-prefixes=CHECK
224+
// RUN: %run %t "void*" 2>&1 | FileCheck %s --implicit-check-not="ArgShadow"
225225

226226
TEST(float);
227-
// RUN: %run %t float 2>&1 | FileCheck %s --implicit-check-not="ArgShadow" --check-prefixes=CHECK
227+
// RUN: %run %t float 2>&1 | FileCheck %s --implicit-check-not="ArgShadow"
228228

229229
TEST(double);
230-
// RUN: %run %t double 2>&1 | FileCheck %s --implicit-check-not="ArgShadow" --check-prefixes=CHECK
230+
// RUN: %run %t double 2>&1 | FileCheck %s --implicit-check-not="ArgShadow"
231231

232232
TEST(long double);
233-
// RUN: %run %t "long double" 2>&1 | FileCheck %s --implicit-check-not="ArgShadow" --check-prefixes=CHECK
233+
// RUN: %run %t "long double" 2>&1 | FileCheck %s --implicit-check-not="ArgShadow"
234234

235235
TEST(IntInt);
236-
// RUN: %run %t IntInt 2>&1 | FileCheck %s --implicit-check-not="ArgShadow" --check-prefixes=CHECK
236+
// RUN: %run %t IntInt 2>&1 | FileCheck %s --implicit-check-not="ArgShadow"
237237

238238
TEST(Int64Int64);
239-
// RUN: %run %t Int64Int64 2>&1 | FileCheck %s --implicit-check-not="ArgShadow" --check-prefixes=CHECK
239+
// RUN: %run %t Int64Int64 2>&1 | FileCheck %s --implicit-check-not="ArgShadow"
240240

241241
TEST(DoubleDouble);
242-
// RUN: %run %t DoubleDouble 2>&1 | FileCheck %s --implicit-check-not="ArgShadow" --check-prefixes=CHECK
242+
// RUN: %run %t DoubleDouble 2>&1 | FileCheck %s --implicit-check-not="ArgShadow"
243243

244244
TEST(Double4);
245-
// RUN: %run %t Double4 2>&1 | FileCheck %s --implicit-check-not="ArgShadow" --check-prefixes=CHECK
245+
// RUN: %run %t Double4 2>&1 | FileCheck %s --implicit-check-not="ArgShadow"
246246

247247
TEST(DoubleFloat);
248-
// RUN: %run %t DoubleFloat 2>&1 | FileCheck %s --implicit-check-not="ArgShadow" --check-prefixes=CHECK
248+
// RUN: %run %t DoubleFloat 2>&1 | FileCheck %s --implicit-check-not="ArgShadow"
249249

250250
TEST(LongDouble2);
251-
// RUN: %run %t LongDouble2 2>&1 | FileCheck %s --implicit-check-not="ArgShadow" --check-prefixes=CHECK
251+
// RUN: %run %t LongDouble2 2>&1 | FileCheck %s --implicit-check-not="ArgShadow"
252252

253253
TEST(LongDouble4);
254-
// RUN: %run %t LongDouble4 2>&1 | FileCheck %s --implicit-check-not="ArgShadow" --check-prefixes=CHECK
254+
// RUN: %run %t LongDouble4 2>&1 | FileCheck %s --implicit-check-not="ArgShadow"
255255

256256
return 1;
257257
}

0 commit comments

Comments
 (0)