blob: 2a4cbbfbb8efac56c80b18458b788a134735e042 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Copyright 2011 Google Inc. All Rights Reserved.
#include "common_test.h"
namespace art {
class HeapTest : public CommonTest {};
TEST_F(HeapTest, GarbageCollectClassLinkerInit) {
// garbage is created during ClassLinker::Init
Heap::CollectGarbage();
}
} // namespace art
|