From 6c1ff23baf81566a0a16bc10cfce908eef35e899 Mon Sep 17 00:00:00 2001 From: Gerhard Jungwirth Date: Thu, 5 Oct 2017 12:42:52 +0200 Subject: [PATCH] TT#22505 api test fix for FakeData the reload of fakedata seems to require a path in the updated format. Otherwise the command "do $filename" seems to not find the file. Change-Id: I7751be6eaec2862a1547ee4ab70fb2b86a902f19 --- t/api-rest/testrunner | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/t/api-rest/testrunner b/t/api-rest/testrunner index b31193e52d..bf329d5812 100755 --- a/t/api-rest/testrunner +++ b/t/api-rest/testrunner @@ -25,13 +25,13 @@ fi if [ "${SELECT}" = "stable" ] ; then echo "Test selection: ${SELECT}" - SELECT=$(echo t/api-rest/api-{all-links,bannedips,bannedusers,billingnetworks,billingprofiles,billingzones,calllists,calls,cert-auth,contracts,customercontacts,customers,lnp,ncoslevels,pbxdevicemodels,peeringgroups,profilepackages,resellers,rewriterules,rewriterulesets,root,soundsets,systemcontacts,threads,topuplogs,valid-patch,vouchers,method-override}.t) + SELECT=$(echo ./t/api-rest/api-{all-links,bannedips,bannedusers,billingnetworks,billingprofiles,billingzones,calllists,calls,cert-auth,contracts,customercontacts,customers,lnp,ncoslevels,pbxdevicemodels,peeringgroups,profilepackages,resellers,rewriterules,rewriterulesets,root,soundsets,systemcontacts,threads,topuplogs,valid-patch,vouchers,method-override}.t) elif [ "${SELECT}" = "fast" ] ; then echo "Test selection: ${SELECT}" - SELECT=$(echo t/api-rest/api-{bannedips,bannedusers,billingnetworks,billingzones,calls,cert-auth,cfdestinationsets,ncoslevels,peeringgroups,peeringrules,peeringinboundrules,peeringservers,resellers,rewriterules,root,soundsets,systemcontacts,valid-patch,vouchers,method-override}.t) + SELECT=$(echo ./t/api-rest/api-{bannedips,bannedusers,billingnetworks,billingzones,calls,cert-auth,cfdestinationsets,ncoslevels,peeringgroups,peeringrules,peeringinboundrules,peeringservers,resellers,rewriterules,root,soundsets,systemcontacts,valid-patch,vouchers,method-override}.t) elif [ "${SELECT}" = "all" ] ; then echo "Test selection: all" - SELECT=$(echo t/api-rest/*.t) + SELECT=$(echo ./t/api-rest/*.t) else echo "Test selection: ${SELECT}" fi