-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pre-submit runs through the pre-submission commands outlined in docs/ checklists/changes.md. This allows easy checking via: ``` $ git rebase -x ./scripts/pre-submit origin/main ``` Change-Id: Ib8b0f7725a31081cd70253032e107ed83aa22626 Signed-off-by: Andrew Jeffery <[email protected]>
- Loading branch information
Showing
2 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#!/usr/bin/sh | ||
set -eu | ||
|
||
BUILD="$(mktemp --directory --tmpdir=.)" | ||
trap 'rm -rf "$BUILD"' EXIT | ||
|
||
# Ensure the test suite passes in the default configuration. Note | ||
# that we don't specify -Dabi=... - the default is equivalent to | ||
# -Dabi=deprecated,stable,testing. | ||
meson setup -Dabi-compliance-check=disabled "$BUILD" | ||
meson compile -C "$BUILD" | ||
meson test -C "$BUILD" | ||
|
||
# Ensure the test suite passes in release mode. libpldm specifies | ||
# -Db_ndebug=if-release by default, so building with --buildtype=release passes | ||
# -DNDEBUG to the compiler for the library implementation. This build | ||
# configuration will catch any unexpected changes in the library implementation | ||
# and incorrect test case implementations. | ||
meson configure --buildtype=release "$BUILD" | ||
meson compile -C "$BUILD" | ||
meson test -C "$BUILD" | ||
|
||
# Ensure the test suite links when testing symbols are removed from the ABI | ||
meson configure --buildtype=debug "$BUILD" | ||
meson configure -Dabi=deprecated,stable "$BUILD" | ||
meson compile -C "$BUILD" | ||
meson test -C "$BUILD" |