const std::string kTestQuery = "SELECT * FROM test_table";
-#ifndef OSQUERY_BUILD_SDK
-const std::string kTestDataPath = "../../../../tools/tests/";
-#else
-const std::string kTestDataPath = "../../../../../tools/tests/";
-#endif
+const std::string kTestDataPath = "../../../tools/tests/";
QueryData getTestDBExpectedResults() {
QueryData d;
}
status = startExtension(
- FLAGS_extensions_socket, name, version, min_sdk_version, kSDKVersion);
+// TODO(Sangwan): Sync with upstream code
+ FLAGS_extensions_socket, name, version, min_sdk_version, "1.4.1");
+// HotFix: Below upstream code makes undefined error.
+// FLAGS_extensions_socket, name, version, min_sdk_version, kSDKVersion);
if (!status.ok()) {
// If the extension failed to start then the EM is most likely unavailable.
return status;