diff --git a/test/Pragmas/load.C b/test/Pragmas/load.C index 99a304c6..7c3f0709 100644 --- a/test/Pragmas/load.C +++ b/test/Pragmas/load.C @@ -10,7 +10,6 @@ // RUN: cat %s | %cling -L %T -Xclang -verify 2>&1 | FileCheck %s #pragma cling load("DoesNotExistPleaseRecover") -// expected-error@input_line_12:1{{expected is not a library; did you mean #include "DoesNotExistPleaseRecover"}} // expected-error@input_line_12:1{{'DoesNotExistPleaseRecover' file not found}} #pragma cling load("libcall_lib") diff --git a/test/Pragmas/multiArgument.C b/test/Pragmas/multiArgument.C index d51826fe..3197f850 100644 --- a/test/Pragmas/multiArgument.C +++ b/test/Pragmas/multiArgument.C @@ -8,6 +8,6 @@ // RUN: cat %s | %cling -I%S -Xclang -verify 2>&1 -#pragma cling load("P0.h", "P1.h","P2.h") //expected-error {{expected is not a library; did you mean #include "P0.h"}} +#pragma cling load("P0.h", "P1.h","P2.h") //expected-error {{expected P0.h to be a library, but it is not. If this is a source file, use `#include "P0.h"`}} .q