Fixed DRC tests - need OASIS normalization

This commit is contained in:
Matthias Koefferlein 2017-11-01 22:48:33 +01:00
parent 4599d342ef
commit 0cfc43d297
1 changed files with 5 additions and 1 deletions

View File

@ -65,7 +65,11 @@ void runtest (tl::TestBase *_this, int mode)
reader.read (layout); reader.read (layout);
} }
db::compare_layouts (_this, layout, au, db::NoNormalization); // NOTE: WriteOAS normalization will remove shape duplicates. For TEST(3)
// shape duplicates are produced because we use a rather small tile size
// and clipping of error shapes does not happen. This normalization removes
// these redundancies.
db::compare_layouts (_this, layout, au, db::WriteOAS);
} }
TEST(1) TEST(1)