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=a551d4f44a1f7dd55840604efbd1d481bf2a2859;hb=be47274f79eb0843da4d805cfc417fbf7921379c;hpb=a70639fb60bfbe5899f580a48222b47f435ca1f8 diff --git a/test/config.go b/test/config.go index a551d4f..804b0b1 100644 --- a/test/config.go +++ b/test/config.go @@ -24,9 +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", +}