From 526ef13d34453cad7f92009cc12d8429bbcafab0 Mon Sep 17 00:00:00 2001 From: Vladimir 'phcoder' Serbinenko Date: Sun, 27 May 2012 14:12:48 +0200 Subject: [PATCH] * grub-core/Makefile.core.def (example_functional_test): Rename to ... (exfctest): ... this to avoid overlong filenames. All users updated. --- ChangeLog | 6 ++++++ grub-core/Makefile.core.def | 2 +- grub-core/tests/example_functional_test.c | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index a18465ba4..28f36c40d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2012-05-27 Vladimir Serbinenko + + * grub-core/Makefile.core.def (example_functional_test): Rename to ... + (exfctest): ... this to avoid overlong filenames. + All users updated. + 2012-05-27 Vladimir Serbinenko Handle "." and ".." on squashfs. diff --git a/grub-core/Makefile.core.def b/grub-core/Makefile.core.def index 000cf0dd8..af2a24e08 100644 --- a/grub-core/Makefile.core.def +++ b/grub-core/Makefile.core.def @@ -1613,7 +1613,7 @@ module = { }; module = { - name = example_functional_test; + name = exfctest; common = tests/example_functional_test.c; cflags = -Wno-format; }; diff --git a/grub-core/tests/example_functional_test.c b/grub-core/tests/example_functional_test.c index 802088791..b841634da 100644 --- a/grub-core/tests/example_functional_test.c +++ b/grub-core/tests/example_functional_test.c @@ -35,4 +35,4 @@ example_test (void) } /* Register example_test method as a functional test. */ -GRUB_FUNCTIONAL_TEST (example_functional_test, example_test); +GRUB_FUNCTIONAL_TEST (exfctest, example_test);