summaryrefslogtreecommitdiff
path: root/test/Driver/unknown-std.cl
blob: 71c478afca88f541b3512841454b7ca1018a6b8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// This file checks output given when processing OpenCL files.
// When user selects invalid language standard
// print out supported values with short description.

// RUN: not %clang %s -std=foobar -c 2>&1 | \
// RUN: FileCheck --match-full-lines %s

// CHECK: error: invalid value 'foobar' in '-std=foobar'
// CHECK-NEXT: note: use 'cl1.0' for 'OpenCL 1.0' standard
// CHECK-NEXT: note: use 'cl1.1' for 'OpenCL 1.1' standard
// CHECK-NEXT: note: use 'cl1.2' for 'OpenCL 1.2' standard
// CHECK-NEXT: note: use 'cl2.0' for 'OpenCL 2.0' standard

// Make sure that no other output is present.
// CHECK-NOT: {{^.+$}}