2015-11-04 18:02:40 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -xe
|
|
|
|
|
2016-06-08 23:05:44 +00:00
|
|
|
make config.h CONFIG_WERROR=y
|
2016-07-27 16:32:00 +00:00
|
|
|
make -C lib/cunit CONFIG_WERROR=y
|
2016-09-28 17:27:03 +00:00
|
|
|
make -C lib/log CONFIG_WERROR=y
|
2016-06-08 23:05:44 +00:00
|
|
|
|
2016-03-18 17:40:34 +00:00
|
|
|
make -C test/lib/nvme/unit CONFIG_WERROR=y
|
2015-11-04 18:02:40 +00:00
|
|
|
|
|
|
|
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
|
2015-12-03 21:30:38 +00:00
|
|
|
|
2016-03-18 17:40:34 +00:00
|
|
|
make -C test/lib/ioat/unit CONFIG_WERROR=y
|
2015-12-03 21:30:38 +00:00
|
|
|
|
|
|
|
test/lib/ioat/unit/ioat_ut
|
2016-05-09 20:16:32 +00:00
|
|
|
|
|
|
|
make -C test/lib/json CONFIG_WERROR=y
|
|
|
|
|
|
|
|
test/lib/json/parse/json_parse_ut
|
|
|
|
test/lib/json/util/json_util_ut
|
|
|
|
test/lib/json/write/json_write_ut
|
2016-05-09 22:27:37 +00:00
|
|
|
|
2016-05-24 17:10:39 +00:00
|
|
|
make -C lib/json CONFIG_WERROR=y
|
2016-05-19 20:29:37 +00:00
|
|
|
make -C test/lib/jsonrpc CONFIG_WERROR=y
|
|
|
|
|
|
|
|
test/lib/jsonrpc/server/jsonrpc_server_ut
|
|
|
|
|
2016-05-09 22:27:37 +00:00
|
|
|
make -C test/lib/log CONFIG_WERROR=y
|
|
|
|
|
|
|
|
test/lib/log/log_ut
|
2016-07-21 22:08:23 +00:00
|
|
|
|
|
|
|
make -C test/lib/nvmf CONFIG_WERROR=y
|
|
|
|
|
|
|
|
test/lib/nvmf/request/request_ut
|
|
|
|
test/lib/nvmf/session/session_ut
|
|
|
|
test/lib/nvmf/subsystem/subsystem_ut
|
2016-07-27 16:32:00 +00:00
|
|
|
|
2016-08-24 23:13:52 +00:00
|
|
|
# TODO: allow lib/util to build without DPDK/libpciaccess
|
|
|
|
#make -C test/lib/scsi CONFIG_WERROR=y
|
|
|
|
make -C test/lib/scsi/dev CONFIG_WERROR=y
|
|
|
|
make -C test/lib/scsi/lun CONFIG_WERROR=y
|
2016-07-27 16:32:00 +00:00
|
|
|
|
|
|
|
test/lib/scsi/dev/dev_ut
|
|
|
|
test/lib/scsi/lun/lun_ut
|
2016-08-24 23:13:52 +00:00
|
|
|
#test/lib/scsi/scsi_bdev/scsi_bdev_ut
|
2016-09-15 00:12:15 +00:00
|
|
|
|
|
|
|
make -C test/lib/util/bit_array CONFIG_WERROR=y
|
2016-09-27 17:51:29 +00:00
|
|
|
make -C test/lib/util/io_channel CONFIG_WERROR=y
|
2016-09-15 00:12:15 +00:00
|
|
|
|
|
|
|
test/lib/util/bit_array/bit_array_ut
|
2016-09-27 17:51:29 +00:00
|
|
|
test/lib/util/io_channel/io_channel_ut
|