TESTS: Add test for standard inquiry page

This commit is contained in:
Ronnie Sahlberg
2013-03-10 19:02:45 -07:00
parent 3e28133a9a
commit 0bc415761a
7 changed files with 175 additions and 10 deletions

View File

@@ -66,6 +66,11 @@ static CU_TestInfo tests_get_lba_status[] = {
CU_TEST_INFO_NULL
};
static CU_TestInfo tests_inquiry[] = {
{ (char *)"testInquiryStandard", test_inquiry_standard },
CU_TEST_INFO_NULL
};
static CU_TestInfo tests_nomedia[] = {
{ (char *)"testNoMediaSBC", test_nomedia_sbc },
CU_TEST_INFO_NULL
@@ -335,6 +340,8 @@ static CU_TestInfo tests_writeverify16[] = {
static CU_SuiteInfo suites[] = {
{ (char *)"TestGetLBAStatus", test_setup, test_teardown,
tests_get_lba_status },
{ (char *)"TestInquiry", test_setup, test_teardown,
tests_inquiry },
{ (char *)"TestNoMedia", test_setup, test_teardown,
tests_nomedia },
{ (char *)"TestOrWrite", test_setup, test_teardown,