Enable CFL

Change-Id: I268a6d86fe69859064698d7de0c4c9949fda29a4
This commit is contained in:
Wojciech Woloszyn
2017-12-27 15:12:27 +01:00
committed by sys_ocldev
parent 94ae9a3d1b
commit 8ece8ab420
13 changed files with 740 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
# Copyright (c) 2017, Intel Corporation
# Copyright (c) 2018, Intel Corporation
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
@@ -136,6 +136,7 @@ if(SUPPORT_GEN9)
set(SUPPORT_KBL ${SUPPORT_PLATFORM_DEFAULT} CACHE BOOL "Support KBL")
set(SUPPORT_BXT ${SUPPORT_PLATFORM_DEFAULT} CACHE BOOL "Support BXT")
set(SUPPORT_GLK ${SUPPORT_PLATFORM_DEFAULT} CACHE BOOL "Support GLK")
set(SUPPORT_CFL ${SUPPORT_PLATFORM_DEFAULT} CACHE BOOL "Support CFL")
endif()
if(TESTS_GEN9)
@@ -151,6 +152,9 @@ if(TESTS_GEN9)
if(SUPPORT_BXT)
set(TESTS_BXT ${TESTS_GEN9} CACHE BOOL "Build ULTs for BXT")
endif()
if(SUPPORT_CFL)
set(TESTS_CFL ${TESTS_GEN9} CACHE BOOL "Build ULTs for CFL")
endif()
endif()
# Init lists
@@ -210,6 +214,15 @@ if(SUPPORT_GEN9)
endif()
endif()
if(SUPPORT_CFL)
ADD_ITEM_FOR_GEN("PLATFORMS" "SUPPORTED" 9 "CFL")
ADD_ITEM_FOR_GEN("PLATFORMS" "SUPPORTED_2_0" 9 "CFL")
if(TESTS_CFL)
ADD_ITEM_FOR_GEN("PLATFORMS" "TESTED" 9 "CFL")
ADD_ITEM_FOR_GEN("CONFIGURATIONS" "UNIT_TESTS" 9 "cfl/1/3/6")
endif()
endif()
if(SUPPORT_BXT)
ADD_ITEM_FOR_GEN("PLATFORMS" "SUPPORTED" 9 "BXT")
if(TESTS_BXT)