1# Copyright © 2020 Valve Corporation 2 3# Permission is hereby granted, free of charge, to any person obtaining a copy 4# of this software and associated documentation files (the "Software"), to deal 5# in the Software without restriction, including without limitation the rights 6# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7# copies of the Software, and to permit persons to whom the Software is 8# furnished to do so, subject to the following conditions: 9 10# The above copyright notice and this permission notice shall be included in 11# all copies or substantial portions of the Software. 12 13# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 19# SOFTWARE. 20aco_tests_files = files( 21 'framework.h', 22 'helpers.cpp', 23 'helpers.h', 24 'main.cpp', 25 'test_assembler.cpp', 26 'test_isel.cpp', 27 'test_optimizer.cpp', 28 'test_to_hw_instr.cpp', 29 'test_tests.cpp', 30) 31 32spirv_files = files( 33 'test_isel.cpp', 34) 35 36gen_spirv = generator(prog_python, 37 output : '@BASENAME@-spirv.h', 38 arguments : [join_paths(meson.current_source_dir(), 'glsl_scraper.py'), 39 '@INPUT@', '--with-glslang', prog_glslang.path(), '-o', '@OUTPUT@']) 40gen_spirv_files = gen_spirv.process(spirv_files) 41 42test( 43 'aco_tests', 44 executable( 45 'aco_tests', 46 [aco_tests_files, gen_spirv_files], 47 cpp_args : ['-DACO_TEST_SOURCE_DIR="@0@"'.format(meson.current_source_dir()), 48 '-DACO_TEST_BUILD_ROOT="@0@"'.format(meson.build_root()), 49 '-DACO_TEST_PYTHON_BIN="@0@"'.format(prog_python.path())] + 50 cpp_args_aco, 51 include_directories : [ 52 inc_include, inc_src, inc_gallium, inc_compiler, inc_mesa, inc_mapi, inc_amd, inc_amd_common, inc_amd_common_llvm, 53 ], 54 link_with : [ 55 libamd_common, libamd_common_llvm, libvulkan_radeon, 56 ], 57 dependencies : [ 58 dep_llvm, dep_thread, idep_aco, idep_nir, idep_mesautil 59 ], 60 gnu_symbol_visibility : 'hidden', 61 build_by_default : true, 62 ), 63 suite : ['amd', 'compiler'], 64) 65