X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?p=src%2Fxds%2Fxds-server.git;a=blobdiff_plain;f=test%2Fconfig.go;h=804b0b1a886b6229347731f5188a50b28062e87f;hp=48509193ad8d43aa14412a2fe79333f00dc65bf8;hb=be47274f79eb0843da4d805cfc417fbf7921379c;hpb=cf3266b208d3ba0fb8f172c29725768bbd41d509 diff --git a/test/config.go b/test/config.go index 4850919..804b0b1 100644 --- a/test/config.go +++ b/test/config.go @@ -24,10 +24,22 @@ const ( 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", +}