| OLD | NEW |
| 1 ; Test that we check that alignment on global variables can't be greater | 1 ; Test that we check that alignment on global variables can't be greater |
| 2 ; than 2**29. | 2 ; than 2**29. |
| 3 | 3 |
| 4 | 4 |
| 5 ; REQUIRES: no_minimal_build | 5 ; REQUIRES: no_minimal_build |
| 6 | 6 |
| 7 ; RUN: not %pnacl_sz -bitcode-as-text %p/Inputs/bad-global-alignment.tbc \ | 7 ; RUN: not %pnacl_sz -bitcode-as-text %p/Inputs/bad-global-alignment.tbc \ |
| 8 ; RUN: -bitcode-format=pnacl -notranslate -build-on-read 2>&1 \ | 8 ; RUN: -bitcode-format=pnacl -notranslate -build-on-read 2>&1 \ |
| 9 ; RUN: | FileCheck %s | 9 ; RUN: | FileCheck %s |
| 10 | 10 |
| 11 ; CHECK: Global variable alignment greater than 2**29. Found: 2**30 | 11 ; CHECK: Global variable alignment greater than 2**29. Found: 2**30 |
| 12 | |
| OLD | NEW |