1{ 2 # Descriptive name for the component 3 "name" : "Thrust Test Suite", 4 # Component owner (email address) 5 "owner" : "blelbach@nvidia.com", 6 "module" : "CUDA - Thrust", 7 8 # Build timeout (in seconds). 9 "buildtimeout" : "28800", 10 # Define variables usable in this component 11 "env" : [ "THRUST_TESTS_BIN_DIR=${VULCAN_BUILD_DIR}/bin/${VULCAN_ARCH}_${VULCAN_OS}${VULCAN_ABI}_${VULCAN_BUILD}" ], 12 # Files included in this component specified with one or more paths. 13 # Paths are relative to this file location. Path syntax uses wildcards and p4-like '...'. 14 "files" : [ 15 "...", 16 { "include" : "CUDA_TOOLKIT_BUILD_FILES" } 17 ], 18 # Output produced by this component and the installation location 19 # for each output. The install location is relative to 20 # VULCAN_INSTALL_DIR. Optional 'kind' property can be used to tag 21 # artifact kinds. 22 "artifacts" : [ 23 { "${THRUST_TESTS_BIN_DIR}/*" : "cuda/_tests/thrust_tests/." }, 24 { "internal/test/thrust_nightly.pl" : "cuda/_tests/thrust_tests/." }, 25 { "internal/test/*.filecheck" : "cuda/_tests/thrust_tests/filecheck_data/." }, 26 { "thrust_tests.vlct" : "cuda/_tests/thrust_tests/.", "kind" : "TESTSUITE" } 27 ], 28 # Dependencies for this component. 29 "depends" : [ "driver_headers", "driver", "compiler", "cuda", "thrust" ], 30 # The agent for this component, relative to this file location. The 31 # agent is invoked to perform component actions. 32 "agent" : { 33 "CUDA_MAKE" : "Makefile", "build_target" : "all", "clean_target" : "clean", 34 "args" : [ "TEST_ALL=1" ] 35 } 36} 37