X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=test%2Fconfig.go;h=6d31559ec34bdd775810a906f93f429ac2f1dfa0;hb=57fda72ba8bd2c61ceb71ef493b9b9a9162ff757;hp=48509193ad8d43aa14412a2fe79333f00dc65bf8;hpb=c095e1ea9a9e38f020ce4ae852d97c712be910b6;p=src%2Fxds%2Fxds-server.git diff --git a/test/config.go b/test/config.go index 4850919..6d31559 100644 --- a/test/config.go +++ b/test/config.go @@ -17,17 +17,27 @@ package xdsservertest -var argsProcess = []string{"../bin/xds-server", "-l", "debug", "-c", "_test-config.json"} - const ( + testConfigFile = "_test-config.json" envRootCfgDir = "XDS_SERVER_ROOT_CFG_DIR" - prefixURL = "http://localhost:8000" logFileXdsServer = "xdsserver-test.log" logFileClient = "client-test.log" + logFileSSHd = "sshd.log" envXdtSdk = "XDT_SDK" envXdsServerWorkspaceDir = "XDS_SERVER_WORKSPACE_DIR" envXdsServerRootCfgDir = "XDS_SERVER_ROOT_CFG_DIR" sdkFileName = "poky-agl-glibc-x86_64-gcc_crosssdk-native_x86_64-toolchain-1.0.2.sh" sdkFile = "fixtures/" + sdkFileName helloworldFixturesDir = "fixtures/helloworld" + sshFixturesDir = "fixtures/ssh" ) + +var dependency_tools = [...]string{ + "cmake", + "make", + "gcc", + "c++", + "python3", + "wget", + "jq", +}