Commit cdb16d61 authored by Andrew La Motte-Mitchell's avatar Andrew La Motte-Mitchell
Browse files

Merge pull request #11 from Seagate/features/clear-db-for-integration-tests

Integration tests clear DB before each run
parents 17e7eb5a c76f1e38
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -67,7 +67,7 @@ class IntegrationTest : public ::testing::Test {
            pid_ = fork();
            ASSERT_NE(-1, pid_);
            if (pid_ == 0) {
                execl(kinetic_path, kinetic_path, NULL);
                execl(kinetic_path, kinetic_path, "--clear_database", NULL);
            }
        }
        ConnectionOptions options;