From 01fb69e198b3dfdccd3a0de5a3f12973d7811dc0 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Wed, 24 Mar 2021 11:47:48 -0700 Subject: tests: fix incorrect relative path names Signed-off-by: Dirk Hohndel --- tests/testprofile.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/testprofile.cpp b/tests/testprofile.cpp index 782451780..cd9d51f0c 100644 --- a/tests/testprofile.cpp +++ b/tests/testprofile.cpp @@ -17,9 +17,9 @@ void TestProfile::testProfileExport() { prefs.planner_deco_mode = BUEHLMANN; - parse_file("../dives/abitofeverything.ssrf", &dive_table, &trip_table, &dive_site_table, &device_table, &filter_preset_table); + parse_file(SUBSURFACE_TEST_DATA "/dives/abitofeverything.ssrf", &dive_table, &trip_table, &dive_site_table, &device_table, &filter_preset_table); save_profiledata("exportprofile.csv", false); - QFile org("../dives/exportprofilereference.csv"); + QFile org(SUBSURFACE_TEST_DATA "/dives/exportprofilereference.csv"); QCOMPARE(org.open(QFile::ReadOnly), true); QFile out("exportprofile.csv"); QCOMPARE(out.open(QFile::ReadOnly), true); @@ -33,9 +33,9 @@ void TestProfile::testProfileExport() void TestProfile::testProfileExportVPMB() { prefs.planner_deco_mode = VPMB; - parse_file("../dives/abitofeverything.ssrf", &dive_table, &trip_table, &dive_site_table, &device_table, &filter_preset_table); + parse_file(SUBSURFACE_TEST_DATA "/dives/abitofeverything.ssrf", &dive_table, &trip_table, &dive_site_table, &device_table, &filter_preset_table); save_profiledata("exportprofileVPMB.csv", false); - QFile org("../dives/exportprofilereferenceVPMB.csv"); + QFile org(SUBSURFACE_TEST_DATA "/dives/exportprofilereferenceVPMB.csv"); QCOMPARE(org.open(QFile::ReadOnly), true); QFile out("exportprofileVPMB.csv"); QCOMPARE(out.open(QFile::ReadOnly), true); -- cgit v1.2.3-70-g09d2