Skip to content

Commit 9b54017

Browse files
committed
Add trival amdflang test
1 parent 36c2c76 commit 9b54017

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#NOOPT = 1
2+
include ../../Makefile.defs
3+
4+
TESTNAME = amdflang-test
5+
TESTSRC_MAIN = amdflang-test.f90
6+
TESTSRC_AUX =
7+
TESTSRC_ALL = $(TESTSRC_MAIN) $(TESTSRC_AUX)
8+
9+
FLANG ?= amdflang
10+
OMP_BIN = $(AOMP)/bin/$(FLANG)
11+
CC = $(OMP_BIN) $(VERBOSE)
12+
#-ccc-print-phases
13+
#"-\#\#\#"
14+
15+
include ../Makefile.rules
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
program amdflangtest
2+
implicit none
3+
4+
print *, "Success: amdflang is alive"
5+
6+
end program amdflangtest

0 commit comments

Comments
 (0)