blob: 90ee97b77f9cd0ffa464dbf817a560f7b47d5000 [file] [log] [blame]
Richard Smithc91daf12017-02-14 22:44:20 +00001// This file checks output given when processing OpenCL files.
2// When user selects invalid language standard
3// print out supported values with short description.
4
5// RUN: not %clang %s -std=foobar -c 2>&1 | \
6// RUN: FileCheck --match-full-lines %s
7
8// CHECK: error: invalid value 'foobar' in '-std=foobar'
Richard Smith8c8fb802017-04-27 01:17:05 +00009// CHECK-NEXT: note: use 'cl1.0' for 'OpenCL 1.0' standard
Richard Smithc91daf12017-02-14 22:44:20 +000010// CHECK-NEXT: note: use 'cl1.1' for 'OpenCL 1.1' standard
11// CHECK-NEXT: note: use 'cl1.2' for 'OpenCL 1.2' standard
12// CHECK-NEXT: note: use 'cl2.0' for 'OpenCL 2.0' standard
Anastasia Stulovac645f612018-04-12 14:17:04 +000013// CHECK-NEXT: note: use 'c++' for 'OpenCL C++ 1.0' standard
Richard Smithc91daf12017-02-14 22:44:20 +000014
15// Make sure that no other output is present.
16// CHECK-NOT: {{^.+$}}
17