55d9ff6a66
Allow end users to build the code even if, for example, warnings are added with new compilers versions. -Werror is still enforced for automated builds. Change-Id: I567009d55cf5b941c452bd41d09f75d03b037209 Signed-off-by: Daniel Verkamp <daniel.verkamp@intel.com>
16 lines
374 B
Bash
Executable File
16 lines
374 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -xe
|
|
|
|
make -C test/lib/nvme/unit CONFIG_WERROR=y
|
|
|
|
test/lib/nvme/unit/nvme_c/nvme_ut
|
|
test/lib/nvme/unit/nvme_ctrlr_c/nvme_ctrlr_ut
|
|
test/lib/nvme/unit/nvme_ctrlr_cmd_c/nvme_ctrlr_cmd_ut
|
|
test/lib/nvme/unit/nvme_ns_cmd_c/nvme_ns_cmd_ut
|
|
test/lib/nvme/unit/nvme_qpair_c/nvme_qpair_ut
|
|
|
|
make -C test/lib/ioat/unit CONFIG_WERROR=y
|
|
|
|
test/lib/ioat/unit/ioat_ut
|