diff options
author | Martin Braun <martin.braun@ettus.com> | 2020-04-15 15:05:16 -0700 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2020-04-17 14:39:41 -0500 |
commit | a55fec421204634edfd74ba839188dd061587024 (patch) | |
tree | aa1145b57ec54e4b611244b9c16be2debb988f46 /host/tests | |
parent | 6dda0ba14651f04cb7bf28cb3a78f5227356fd6a (diff) | |
download | uhd-a55fec421204634edfd74ba839188dd061587024.tar.gz uhd-a55fec421204634edfd74ba839188dd061587024.tar.bz2 uhd-a55fec421204634edfd74ba839188dd061587024.zip |
tests: Print images dir instead of simply reading it
Diffstat (limited to 'host/tests')
-rw-r--r-- | host/tests/paths_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/tests/paths_test.cpp b/host/tests/paths_test.cpp index 930b34ec8..266a62e0a 100644 --- a/host/tests/paths_test.cpp +++ b/host/tests/paths_test.cpp @@ -55,7 +55,7 @@ BOOST_AUTO_TEST_CASE(test_get_paths) BOOST_CHECK(true); const std::string images_dir_search_path = ""; - const std::string images_dir = get_images_dir(images_dir_search_path); + std::cout << "images_dir: " << get_images_dir(images_dir_search_path) << std::endl; BOOST_REQUIRE_THROW( find_image_path("this_device_does_not_exist.bit", ""), uhd::io_error); |