Skip to content

Commit e8f2166

Browse files
authored
[NFC][SYCL] Move FPGA AOT test to the sycl project, as it does a full compile (#4249)
The driver area should be used for specific driver testing. The return code test has dependencies on additional files related to a full compile, so move this to the sycl area.
1 parent de6e848 commit e8f2166

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed
File renamed without changes.
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
1-
// REQUIRES: system-linux
1+
// REQUIRES: system-linux
22

33
/// Tests behavior with aoc -fintelpga.
44
/// Uses a dummy aoc which returns '42' to make sure we properly emit a
55
/// diagnostic and also do not stop compilation
6-
// RUN: env PATH=%S/Inputs/SYCL:$PATH \
6+
// RUN: env PATH=%S/Inputs:$PATH \
77
// RUN: not %clangxx -fsycl -fintelfpga -Xshardware %s -v 2>&1 \
88
// RUN: | FileCheck %s -check-prefix ERROR_OUTPUT
99
// ERROR_OUTPUT: ld{{.*}} -o a.out
10-
// ERROR_OUTPUT: The FPGA image generated during this compile contains timing violations
10+
// ERROR_OUTPUT: The FPGA image generated during this compile contains timing
11+
// ERROR_OUTPUT-SAME: violations
1112

12-
int main()
13-
{
14-
return 0;
15-
}
13+
int main() { return 0; }

0 commit comments

Comments
 (0)