mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-08 09:03:18 +00:00
925213b0fa
This is at least good documentation, but also opens the possibility of using pipefail. llvm-svn: 185652
13 lines
362 B
C
13 lines
362 B
C
// RUN: not %clang_cc1 -Wfatal-errors -verify %s 2>&1 | FileCheck %s
|
|
|
|
#error first fatal
|
|
// expected-error@-1 {{first fatal}}
|
|
|
|
#error second fatal
|
|
// expected-error@-1 {{second fatal}}
|
|
|
|
|
|
// CHECK: error: 'error' diagnostics expected but not seen:
|
|
// CHECK-NEXT: Line 6 (directive at {{.*}}verify-fatal.c:7): second fatal
|
|
// CHECK-NEXT: 1 error generated.
|