blob: 53489e454d39e7539a2448398ed2485b0a8350cd [file] [log] [blame]
Brian Carlstrom1f870082011-08-23 16:02:11 -07001// Copyright 2011 Google Inc. All Rights Reserved.
2
3#include "common_test.h"
4
5namespace art {
6
7class HeapTest : public CommonTest {};
8
Ian Rogers0cfe1fb2011-08-26 03:29:44 -07009TEST_F(HeapTest, DISABLED_GarbageCollectClassLinkerInit) {
Brian Carlstrom1f870082011-08-23 16:02:11 -070010 // garbage is created during ClassLinker::Init
11 Heap::CollectGarbage();
12}
13
Ian Rogers0cfe1fb2011-08-26 03:29:44 -070014} // namespace art