| Index: test/cctest/cctest.cc
|
| diff --git a/test/cctest/cctest.cc b/test/cctest/cctest.cc
|
| index 05f276d3f4a178b930e9d75b8de3c26da060719d..f2facc6ce7eccaf8d6b7d7029818c4c641b9f58e 100644
|
| --- a/test/cctest/cctest.cc
|
| +++ b/test/cctest/cctest.cc
|
| @@ -53,9 +53,9 @@ v8::Isolate* CcTest::isolate_ = NULL;
|
|
|
|
|
| CcTest::CcTest(TestFunction* callback, const char* file, const char* name,
|
| - const char* dependency, bool enabled, bool initialize)
|
| - : callback_(callback), name_(name), dependency_(dependency),
|
| - enabled_(enabled), initialize_(initialize), prev_(last_) {
|
| + bool enabled, bool initialize)
|
| + : callback_(callback), name_(name), enabled_(enabled),
|
| + initialize_(initialize), prev_(last_) {
|
| // Find the base name of this test (const_cast required on Windows).
|
| char *basename = strrchr(const_cast<char *>(file), '/');
|
| if (!basename) {
|
| @@ -128,12 +128,7 @@ void CcTest::DisableAutomaticDispose() {
|
| static void PrintTestList(CcTest* current) {
|
| if (current == NULL) return;
|
| PrintTestList(current->prev());
|
| - if (current->dependency() != NULL) {
|
| - printf("%s/%s<%s\n",
|
| - current->file(), current->name(), current->dependency());
|
| - } else {
|
| - printf("%s/%s<\n", current->file(), current->name());
|
| - }
|
| + printf("%s/%s\n", current->file(), current->name());
|
| }
|
|
|
|
|
|
|