Skip to content

Commit b6ee41f

Browse files
committed
[clang-repl] Relax regular expression for new const.cpp test
This should fix the failing test on Windows: https://lab.llvm.org/buildbot/#/builders/216/builds/28266
1 parent 77c43e1 commit b6ee41f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/test/Interpreter/const.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ A::~A() { printf("~A, this = %p, val = %d\n", this, val); }
1010
void A::f() const { printf("f: this = %p, val = %d\n", this, val); }
1111

1212
const A a(1);
13-
// CHECK: A(1), this = [[THIS:0x[0-9a-f]+]]
13+
// CHECK: A(1), this = [[THIS:.+]]
1414
// The constructor must only be called once!
1515
// CHECK-NOT: A(1)
1616

0 commit comments

Comments
 (0)