Synchronise with Khronos-private Gitlab branch

The maintenance of the conformance tests is moving to Github.

This commit contains all the changes that have been done in
Gitlab since the first public release of the conformance tests.

Signed-off-by: Kevin Petit <kevin.petit@arm.com>
This commit is contained in:
Kevin Petit
2019-02-20 16:36:05 +00:00
committed by Kévin Petit
parent 95196e7fb4
commit d8733efc0f
576 changed files with 212486 additions and 191776 deletions

View File

@@ -1,13 +1,13 @@
project
: requirements
# <toolset>gcc:<cflags>-xc++
<toolset>msvc:<cflags>"/TP"
;
exe computeinfo : main.c ;
install dist
: computeinfo
: <variant>debug:<location>$(DIST)/debug/tests/test_conformance/computeinfo
<variant>release:<location>$(DIST)/release/tests/test_conformance/computeinfo
;
project
: requirements
# <toolset>gcc:<cflags>-xc++
<toolset>msvc:<cflags>"/TP"
;
exe computeinfo : main.c ;
install dist
: computeinfo
: <variant>debug:<location>$(DIST)/debug/tests/test_conformance/computeinfo
<variant>release:<location>$(DIST)/release/tests/test_conformance/computeinfo
;

View File

@@ -1,32 +1,32 @@
ifdef BUILD_WITH_ATF
ATF = -framework ATF
USE_ATF = -DUSE_ATF
endif
LIBPATH += -L/System/Library/Frameworks/OpenCL.framework/Libraries
LIBPATH += -L.
FRAMEWORK = main.c ../../test_common/harness/errorHelpers.c ../../test_common/harness/kernelHelpers.c
HEADERS =
TARGET = computeinfo
INCLUDE = -I./../../OpenCL/cl_headers/public
COMPILERFLAGS = -c -Wall -g -Wshorten-64-to-32
CC = cc
CFLAGS = $(COMPILERFLAGS) ${RC_CFLAGS} ${USE_ATF}
LIBRARIES = -framework OpenCL -framework OpenGL -framework GLUT -framework AppKit ${RC_CFLAGS} ${ATF}
OBJECTS = main.o errorHelpers.o kernelHelpers.o
TARGETOBJECT =
all: $(TARGET)
$(OBJECTS): $(FRAMEWORK) $(HEADERS)
$(CC) $(CFLAGS) $(INCLUDE) $(FRAMEWORK)
$(TARGET): $(OBJECTS)
$(CC) $(OBJECTS) -o $@ $(LIBPATH) $(LIBRARIES)
clean:
rm -f $(TARGET) $(OBJECTS)
.DEFAULT:
@echo The target \"$@\" does not exist in Makefile.
ifdef BUILD_WITH_ATF
ATF = -framework ATF
USE_ATF = -DUSE_ATF
endif
LIBPATH += -L/System/Library/Frameworks/OpenCL.framework/Libraries
LIBPATH += -L.
FRAMEWORK = main.c ../../test_common/harness/errorHelpers.c ../../test_common/harness/kernelHelpers.c
HEADERS =
TARGET = computeinfo
INCLUDE = -I./../../OpenCL/cl_headers/public
COMPILERFLAGS = -c -Wall -g -Wshorten-64-to-32
CC = cc
CFLAGS = $(COMPILERFLAGS) ${RC_CFLAGS} ${USE_ATF}
LIBRARIES = -framework OpenCL -framework OpenGL -framework GLUT -framework AppKit ${RC_CFLAGS} ${ATF}
OBJECTS = main.o errorHelpers.o kernelHelpers.o
TARGETOBJECT =
all: $(TARGET)
$(OBJECTS): $(FRAMEWORK) $(HEADERS)
$(CC) $(CFLAGS) $(INCLUDE) $(FRAMEWORK)
$(TARGET): $(OBJECTS)
$(CC) $(OBJECTS) -o $@ $(LIBPATH) $(LIBRARIES)
clean:
rm -f $(TARGET) $(OBJECTS)
.DEFAULT:
@echo The target \"$@\" does not exist in Makefile.

File diff suppressed because it is too large Load Diff