2013-10-16 23:59:46 +02:00
|
|
|
// Copyright (c) 2013, Facebook, Inc. All rights reserved.
|
|
|
|
// This source code is licensed under the BSD-style license found in the
|
|
|
|
// LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
// of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
//
|
2011-03-18 23:37:00 +01:00
|
|
|
// Copyright (c) 2011 The LevelDB Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file. See the AUTHORS file for names of contributors.
|
|
|
|
|
|
|
|
#include "util/testharness.h"
|
2011-08-16 03:21:01 +02:00
|
|
|
#include <string>
|
|
|
|
#include <stdlib.h>
|
2011-03-18 23:37:00 +01:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
Better stack trace in MAC
Summary:
Now this gives us the real deal stack trace:
Assertion failed: (false), function GetProperty, file db/db_impl.cc, line 4072.
Received signal 6 (Abort trap: 6)
#0 0x7fff57ce39b9
#1 abort (in libsystem_c.dylib) + 125
#2 basename (in libsystem_c.dylib) + 0
#3 rocksdb::DBImpl::GetProperty(rocksdb::ColumnFamilyHandle*, rocksdb::Slice const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >*) (in db_test) (db_impl.cc:4072)
#4 rocksdb::_Test_Empty::_Run() (in db_test) (testharness.h:68)
#5 rocksdb::_Test_Empty::_RunIt() (in db_test) (db_test.cc:1005)
#6 rocksdb::test::RunAllTests() (in db_test) (testharness.cc:60)
#7 main (in db_test) (db_test.cc:6697)
#8 start (in libdyld.dylib) + 1
Test Plan: added artificial assert, saw great stack trace
Reviewers: haobo, dhruba, ljin
Reviewed By: haobo
CC: leveldb
Differential Revision: https://reviews.facebook.net/D18309
2014-04-25 15:50:51 +02:00
|
|
|
#include "port/stack_trace.h"
|
2011-03-18 23:37:00 +01:00
|
|
|
|
2013-10-04 06:49:15 +02:00
|
|
|
namespace rocksdb {
|
2011-03-18 23:37:00 +01:00
|
|
|
namespace test {
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
struct Test {
|
|
|
|
const char* base;
|
|
|
|
const char* name;
|
|
|
|
void (*func)();
|
|
|
|
};
|
|
|
|
std::vector<Test>* tests;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool RegisterTest(const char* base, const char* name, void (*func)()) {
|
2013-03-01 03:04:58 +01:00
|
|
|
if (tests == nullptr) {
|
2011-03-18 23:37:00 +01:00
|
|
|
tests = new std::vector<Test>;
|
|
|
|
}
|
|
|
|
Test t;
|
|
|
|
t.base = base;
|
|
|
|
t.name = name;
|
|
|
|
t.func = func;
|
|
|
|
tests->push_back(t);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
int RunAllTests() {
|
2014-04-24 19:52:20 +02:00
|
|
|
port::InstallStackTraceHandler();
|
|
|
|
|
2014-10-29 20:02:11 +01:00
|
|
|
const char* one_matcher = getenv("ROCKSDB_TESTS");
|
|
|
|
const char* from_matcher = getenv("ROCKSDB_TESTS_FROM");
|
2011-08-16 03:21:01 +02:00
|
|
|
|
2011-03-18 23:37:00 +01:00
|
|
|
int num = 0;
|
2014-10-29 20:02:11 +01:00
|
|
|
bool tests_on = (one_matcher == nullptr && from_matcher == nullptr);
|
2013-03-01 03:04:58 +01:00
|
|
|
if (tests != nullptr) {
|
2012-11-06 21:02:18 +01:00
|
|
|
for (unsigned int i = 0; i < tests->size(); i++) {
|
2011-03-18 23:37:00 +01:00
|
|
|
const Test& t = (*tests)[i];
|
2014-10-29 20:02:11 +01:00
|
|
|
if (tests_on == false) {
|
|
|
|
if (one_matcher != nullptr || from_matcher != nullptr) {
|
|
|
|
std::string name = t.base;
|
|
|
|
name.push_back('.');
|
|
|
|
name.append(t.name);
|
|
|
|
if (from_matcher != nullptr &&
|
|
|
|
strstr(name.c_str(), from_matcher) != nullptr) {
|
|
|
|
tests_on = true;
|
|
|
|
}
|
|
|
|
if (!tests_on) {
|
|
|
|
if (one_matcher == nullptr ||
|
|
|
|
strstr(name.c_str(), one_matcher) == nullptr) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2011-08-16 03:21:01 +02:00
|
|
|
}
|
|
|
|
}
|
2011-03-18 23:37:00 +01:00
|
|
|
fprintf(stderr, "==== Test %s.%s\n", t.base, t.name);
|
|
|
|
(*t.func)();
|
|
|
|
++num;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fprintf(stderr, "==== PASSED %d tests\n", num);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-10-31 23:08:10 +01:00
|
|
|
std::string TmpDir(Env* env) {
|
2011-03-18 23:37:00 +01:00
|
|
|
std::string dir;
|
2014-10-31 23:08:10 +01:00
|
|
|
Status s = env->GetTestDirectory(&dir);
|
2011-03-18 23:37:00 +01:00
|
|
|
ASSERT_TRUE(s.ok()) << s.ToString();
|
|
|
|
return dir;
|
|
|
|
}
|
|
|
|
|
|
|
|
int RandomSeed() {
|
|
|
|
const char* env = getenv("TEST_RANDOM_SEED");
|
2013-03-01 03:04:58 +01:00
|
|
|
int result = (env != nullptr ? atoi(env) : 301);
|
2011-03-18 23:37:00 +01:00
|
|
|
if (result <= 0) {
|
|
|
|
result = 301;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2011-10-31 18:22:06 +01:00
|
|
|
} // namespace test
|
2013-10-04 06:49:15 +02:00
|
|
|
} // namespace rocksdb
|