* grub-core/Makefile.core.def (legacy_password_test): Disable
on platforms where no legacycfg is compiled. * grub-core/tests/lib/functional_test.c: Tolerate failure to load legacy_password_test.
This commit is contained in:
parent
d5bab2c0e1
commit
b0720b4988
3 changed files with 14 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2013-11-12 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* grub-core/Makefile.core.def (legacy_password_test): Disable
|
||||||
|
on platforms where no legacycfg is compiled.
|
||||||
|
* grub-core/tests/lib/functional_test.c: Tolerate failure to
|
||||||
|
load legacy_password_test.
|
||||||
|
|
||||||
2013-11-12 Vladimir Serbinenko <phcoder@gmail.com>
|
2013-11-12 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
* grub-core/loader/i386/bsd.c: Remove variable length arrays.
|
* grub-core/loader/i386/bsd.c: Remove variable length arrays.
|
||||||
|
|
|
@ -1929,6 +1929,11 @@ module = {
|
||||||
module = {
|
module = {
|
||||||
name = legacy_password_test;
|
name = legacy_password_test;
|
||||||
common = tests/legacy_password_test.c;
|
common = tests/legacy_password_test.c;
|
||||||
|
enable = i386_pc;
|
||||||
|
enable = i386_efi;
|
||||||
|
enable = x86_64_efi;
|
||||||
|
enable = emu;
|
||||||
|
enable = xen;
|
||||||
};
|
};
|
||||||
|
|
||||||
module = {
|
module = {
|
||||||
|
|
|
@ -53,6 +53,8 @@ grub_functional_all_tests (grub_extcmd_context_t ctxt __attribute__ ((unused)),
|
||||||
grub_test_t test;
|
grub_test_t test;
|
||||||
int ok = 1;
|
int ok = 1;
|
||||||
|
|
||||||
|
grub_dl_load ("legacy_password_test");
|
||||||
|
grub_errno = GRUB_ERR_NONE;
|
||||||
grub_dl_load ("exfctest");
|
grub_dl_load ("exfctest");
|
||||||
grub_dl_load ("videotest_checksum");
|
grub_dl_load ("videotest_checksum");
|
||||||
grub_dl_load ("gfxterm_menu");
|
grub_dl_load ("gfxterm_menu");
|
||||||
|
@ -61,7 +63,6 @@ grub_functional_all_tests (grub_extcmd_context_t ctxt __attribute__ ((unused)),
|
||||||
grub_dl_load ("div_test");
|
grub_dl_load ("div_test");
|
||||||
grub_dl_load ("xnu_uuid_test");
|
grub_dl_load ("xnu_uuid_test");
|
||||||
grub_dl_load ("pbkdf2_test");
|
grub_dl_load ("pbkdf2_test");
|
||||||
grub_dl_load ("legacy_password_test");
|
|
||||||
grub_dl_load ("signature_test");
|
grub_dl_load ("signature_test");
|
||||||
|
|
||||||
FOR_LIST_ELEMENTS (test, grub_test_list)
|
FOR_LIST_ELEMENTS (test, grub_test_list)
|
||||||
|
|
Loading…
Reference in a new issue