Mercurial > hg > CbC > CbC_llvm
view clang/test/Interpreter/fail.cpp @ 237:c80f45b162ad llvm-original
add some fix
author | kono |
---|---|
date | Wed, 09 Nov 2022 17:47:54 +0900 |
parents | c4bab56944e8 |
children | 1f2b6ac9f198 |
line wrap: on
line source
// FIXME: There're some inconsistencies between interactive and non-interactive // modes. For example, when clang-repl runs in the interactive mode, issues an // error, and then successfully recovers if we decide it's a success then for // the non-interactive mode the exit code should be a failure. // RUN: clang-repl "int x = 10;" "int y=7; err;" "int y = 10;" // RUN: clang-repl "int i = 10;" 'extern "C" int printf(const char*,...);' \ // RUN: 'auto r1 = printf("i = %d\n", i);' | FileCheck --check-prefix=CHECK-DRIVER %s // REQUIRES: host-supports-jit // UNSUPPORTED: system-aix // CHECK-DRIVER: i = 10 // RUN: cat %s | not clang-repl | FileCheck %s BOOM! extern "C" int printf(const char *, ...); int i = 42; auto r1 = printf("i = %d\n", i); // CHECK: i = 42 %quit