| 1 |
greg |
1.1 |
include(setup_paths.cmake)
|
| 2 |
|
|
|
| 3 |
greg |
1.2 |
# run rpict on the Cornell box
|
| 4 |
greg |
1.1 |
execute_process(
|
| 5 |
greg |
1.2 |
WORKING_DIRECTORY ${test_output_dir}
|
| 6 |
|
|
COMMAND rpict${CMAKE_EXECUTABLE_SUFFIX} -ab 1 -vf ${resources_dir}/cornell_box/cornell.vf ${test_output_dir}/cornell_box.oct
|
| 7 |
|
|
OUTPUT_FILE ${test_output_dir}/rpict_out.hdr
|
| 8 |
greg |
1.1 |
RESULT_VARIABLE res
|
| 9 |
|
|
)
|
| 10 |
|
|
if(NOT ${res} EQUAL 0)
|
| 11 |
|
|
message(FATAL_ERROR "Bad return value from rpict, res = ${res}")
|
| 12 |
|
|
endif()
|
| 13 |
|
|
|
| 14 |
|
|
# scan output file for valid header
|
| 15 |
greg |
1.2 |
file(READ ${test_output_dir}/rpict_out.hdr test_output)
|
| 16 |
greg |
1.1 |
if(test_output MATCHES "SOFTWARE= RADIANCE")
|
| 17 |
|
|
message(STATUS "passed")
|
| 18 |
|
|
else()
|
| 19 |
|
|
message(STATUS "failed")
|
| 20 |
|
|
endif()
|