16 lines · plain
1// Ensure that the size of the reduced BMI is not larger than the full BMI2// in the most simple case. 3 4// This test requires linux commands.5// REQUIRES: system-linux6 7// RUN: rm -fr %t8// RUN: mkdir %t9//10// RUN: %clang_cc1 -std=c++20 -emit-module-interface %s -o %t/a.pcm11// RUN: %clang_cc1 -std=c++20 -emit-reduced-module-interface %s -o %t/a.reduced.pcm12//13// RUN: %python %S/compare-file-size.py %t/a.pcm %t/a.reduced.pcm14 15export module a;16