diff --git a/tests/Interface/core/ContainerTest.cpp b/tests/Interface/core/ContainerTest.cpp index 0f69d89383..3d80b3375d 100644 --- a/tests/Interface/core/ContainerTest.cpp +++ b/tests/Interface/core/ContainerTest.cpp @@ -56,7 +56,7 @@ int main() { // Test custom shape no malloc constructor. //===--------------------------------------------------------------------===// MemRef testCustomShapeNoMallocConstructor(sizes, false, 0); - // CHECK: (nil) + // CHECK: {{(nil)|0x0}} fprintf(stderr, "%p\n", testCustomShapeNoMallocConstructor.getData()); //===--------------------------------------------------------------------===// @@ -64,7 +64,7 @@ int main() { //===--------------------------------------------------------------------===// std::vector arrayShape = {1, 80, 32000}; MemRef testArrayNoMallocConstructor(arrayShape, false, 0); - // CHECK: (nil) + // CHECK: {{(nil)|0x0}} fprintf(stderr, "%p\n", testArrayNoMallocConstructor.getData()); //===--------------------------------------------------------------------===//