X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=test%2Fconfig.go;h=6d31559ec34bdd775810a906f93f429ac2f1dfa0;hb=57fda72ba8bd2c61ceb71ef493b9b9a9162ff757;hp=8fea851e34c5ebebd299029d0ebe5018f5e9eee3;hpb=db0df685e9dc40fdd53113caaac976d12fd73435;p=src%2Fxds%2Fxds-server.git diff --git a/test/config.go b/test/config.go index 8fea851..6d31559 100644 --- a/test/config.go +++ b/test/config.go @@ -17,14 +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", +}