mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-24 03:59:52 +00:00
tests/qtest: Rename m25p80 test in aspeed_smc test
The m25p80 test depends on the Aspeed SMC controller to test our SPI-NOR flash support. Reflect this dependency by changing the name. Signed-off-by: Cédric Le Goater <clg@kaod.org> Reviewed-by: Joel Stanley <joel@jms.id.au> Message-Id: <20210407171637.777743-17-clg@kaod.org> Signed-off-by: Cédric Le Goater <clg@kaod.org>
This commit is contained in:
parent
1769a70e54
commit
5fde7f10c0
@ -367,12 +367,12 @@ int main(int argc, char **argv)
|
|||||||
"-drive file=%s,format=raw,if=mtd",
|
"-drive file=%s,format=raw,if=mtd",
|
||||||
tmp_path);
|
tmp_path);
|
||||||
|
|
||||||
qtest_add_func("/m25p80/read_jedec", test_read_jedec);
|
qtest_add_func("/ast2400/smc/read_jedec", test_read_jedec);
|
||||||
qtest_add_func("/m25p80/erase_sector", test_erase_sector);
|
qtest_add_func("/ast2400/smc/erase_sector", test_erase_sector);
|
||||||
qtest_add_func("/m25p80/erase_all", test_erase_all);
|
qtest_add_func("/ast2400/smc/erase_all", test_erase_all);
|
||||||
qtest_add_func("/m25p80/write_page", test_write_page);
|
qtest_add_func("/ast2400/smc/write_page", test_write_page);
|
||||||
qtest_add_func("/m25p80/read_page_mem", test_read_page_mem);
|
qtest_add_func("/ast2400/smc/read_page_mem", test_read_page_mem);
|
||||||
qtest_add_func("/m25p80/write_page_mem", test_write_page_mem);
|
qtest_add_func("/ast2400/smc/write_page_mem", test_write_page_mem);
|
||||||
|
|
||||||
ret = g_test_run();
|
ret = g_test_run();
|
||||||
|
|
@ -162,7 +162,8 @@ qtests_npcm7xx = \
|
|||||||
'npcm7xx_watchdog_timer-test'] + \
|
'npcm7xx_watchdog_timer-test'] + \
|
||||||
(slirp.found() ? ['npcm7xx_emc-test'] : [])
|
(slirp.found() ? ['npcm7xx_emc-test'] : [])
|
||||||
qtests_aspeed = \
|
qtests_aspeed = \
|
||||||
['aspeed_hace-test']
|
['aspeed_hace-test',
|
||||||
|
'aspeed_smc-test']
|
||||||
qtests_arm = \
|
qtests_arm = \
|
||||||
(config_all_devices.has_key('CONFIG_MPS2') ? ['sse-timer-test'] : []) + \
|
(config_all_devices.has_key('CONFIG_MPS2') ? ['sse-timer-test'] : []) + \
|
||||||
(config_all_devices.has_key('CONFIG_CMSDK_APB_DUALTIMER') ? ['cmsdk-apb-dualtimer-test'] : []) + \
|
(config_all_devices.has_key('CONFIG_CMSDK_APB_DUALTIMER') ? ['cmsdk-apb-dualtimer-test'] : []) + \
|
||||||
@ -173,7 +174,6 @@ qtests_arm = \
|
|||||||
(config_all_devices.has_key('CONFIG_NPCM7XX') ? qtests_npcm7xx : []) + \
|
(config_all_devices.has_key('CONFIG_NPCM7XX') ? qtests_npcm7xx : []) + \
|
||||||
['arm-cpu-features',
|
['arm-cpu-features',
|
||||||
'microbit-test',
|
'microbit-test',
|
||||||
'm25p80-test',
|
|
||||||
'test-arm-mptimer',
|
'test-arm-mptimer',
|
||||||
'boot-serial-test',
|
'boot-serial-test',
|
||||||
'hexloader-test']
|
'hexloader-test']
|
||||||
|
Loading…
Reference in New Issue
Block a user