* [PATCH 0/2] Tests unifont
@ 2023-02-16 7:14 Glenn Washburn
2023-02-16 7:15 ` [PATCH 1/2] tests: Return hard error for functional test when unicode.pf2 does not exist Glenn Washburn
2023-02-16 7:15 ` [PATCH 2/2] docs: Document that the functional test requires the package xfonts-unifont Glenn Washburn
0 siblings, 2 replies; 8+ messages in thread
From: Glenn Washburn @ 2023-02-16 7:14 UTC (permalink / raw)
To: grub-devel, Daniel Kiper; +Cc: Thomas Schmitt, Glenn Washburn
These were suggested by Thomas Schmitt. The first causes an early hard error
in the functional test when unicode.pf2 is not available. And the second
is a documentation change to add the xfonts-unifont to the list of required
debian packages needed for running the tests successfully.
Glenn
Glenn Washburn (2):
tests: Return hard error for functional test when unicode.pf2 does not
exist
docs: Document that the functional test requires the package
xfonts-unifont
INSTALL | 1 +
tests/grub_func_test.in | 5 +++++
2 files changed, 6 insertions(+)
--
2.34.1
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH 1/2] tests: Return hard error for functional test when unicode.pf2 does not exist
2023-02-16 7:14 [PATCH 0/2] Tests unifont Glenn Washburn
@ 2023-02-16 7:15 ` Glenn Washburn
2023-02-16 12:21 ` Thomas Schmitt
2023-02-16 7:15 ` [PATCH 2/2] docs: Document that the functional test requires the package xfonts-unifont Glenn Washburn
1 sibling, 1 reply; 8+ messages in thread
From: Glenn Washburn @ 2023-02-16 7:15 UTC (permalink / raw)
To: grub-devel, Daniel Kiper; +Cc: Thomas Schmitt, Glenn Washburn
The functional test requires unicode.pf2 to run successfully, so
explicitly have the test return ERROR when its not found.
Signed-off-by: Glenn Washburn <development@efficientek.com>
---
tests/grub_func_test.in | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/tests/grub_func_test.in b/tests/grub_func_test.in
index c67f9e4225..d43427c568 100644
--- a/tests/grub_func_test.in
+++ b/tests/grub_func_test.in
@@ -3,6 +3,11 @@ set -e
. "@builddir@/grub-core/modinfo.sh"
+if [ ! -e "@builddir@/"unicode.pf2 ]; then
+ echo "Functional test requires grub-mkfont support"
+ exit 99
+fi
+
case "${grub_modinfo_target_cpu}-${grub_modinfo_platform}" in
# PLATFORM: Max RAM is 256M
mips-qemu_mips | mipsel-qemu_mips)
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH 2/2] docs: Document that the functional test requires the package xfonts-unifont
2023-02-16 7:14 [PATCH 0/2] Tests unifont Glenn Washburn
2023-02-16 7:15 ` [PATCH 1/2] tests: Return hard error for functional test when unicode.pf2 does not exist Glenn Washburn
@ 2023-02-16 7:15 ` Glenn Washburn
2023-02-16 12:21 ` Thomas Schmitt
2023-02-24 15:54 ` Daniel Kiper
1 sibling, 2 replies; 8+ messages in thread
From: Glenn Washburn @ 2023-02-16 7:15 UTC (permalink / raw)
To: grub-devel, Daniel Kiper; +Cc: Thomas Schmitt, Glenn Washburn
Signed-off-by: Glenn Washburn <development@efficientek.com>
---
INSTALL | 1 +
1 file changed, 1 insertion(+)
diff --git a/INSTALL b/INSTALL
index 620dcceb48..d1d5a6b88a 100644
--- a/INSTALL
+++ b/INSTALL
@@ -70,6 +70,7 @@ Prerequisites for make-check:
* xorriso 1.2.9 or later, for grub-mkrescue and grub-shell
* wamerican, for grub-fs-tester
* mtools, FAT tools for EFI platforms
+* xfonts-unifont, for the functional tests
* If running a Linux kernel the following modules must be loaded:
- fuse, loop
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH 1/2] tests: Return hard error for functional test when unicode.pf2 does not exist
2023-02-16 7:15 ` [PATCH 1/2] tests: Return hard error for functional test when unicode.pf2 does not exist Glenn Washburn
@ 2023-02-16 12:21 ` Thomas Schmitt
0 siblings, 0 replies; 8+ messages in thread
From: Thomas Schmitt @ 2023-02-16 12:21 UTC (permalink / raw)
To: grub-devel; +Cc: daniel.kiper, development
Hi,
On Thu, 16 Feb 2023 01:15:00 -0600, Glenn Washburn
<development@efficientek.com> wrote:
> The functional test requires unicode.pf2 to run successfully, so
> explicitly have the test return ERROR when its not found.
>
> Signed-off-by: Glenn Washburn <development@efficientek.com>
> ---
> tests/grub_func_test.in | 5 +++++
> 1 file changed, 5 insertions(+)
>
> diff --git a/tests/grub_func_test.in b/tests/grub_func_test.in
> index c67f9e4225..d43427c568 100644
> --- a/tests/grub_func_test.in
> +++ b/tests/grub_func_test.in
> @@ -3,6 +3,11 @@ set -e
>
> . "@builddir@/grub-core/modinfo.sh"
>
> +if [ ! -e "@builddir@/"unicode.pf2 ]; then
> + echo "Functional test requires grub-mkfont support"
> + exit 99
> +fi
> +
> case "${grub_modinfo_target_cpu}-${grub_modinfo_platform}" in
> # PLATFORM: Max RAM is 256M
> mips-qemu_mips | mipsel-qemu_mips)
Tested-by: Thomas Schmitt <scdbackup@gmx.net>
With xfonts-unifont installed, the test gets beyond the grub-mkisofs run
and shows the usual complaints about checksums.
After
apt-get remove xfonts-unifont
and in the git repo:
rm unicode.pf2
./configure && make
the grub_func_test ends very quickly with:
Functional test requires grub-mkfont support
ERROR grub_func_test (exit status: 99)
Have a nice day :)
Thomas
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 2/2] docs: Document that the functional test requires the package xfonts-unifont
2023-02-16 7:15 ` [PATCH 2/2] docs: Document that the functional test requires the package xfonts-unifont Glenn Washburn
@ 2023-02-16 12:21 ` Thomas Schmitt
2023-02-24 15:54 ` Daniel Kiper
1 sibling, 0 replies; 8+ messages in thread
From: Thomas Schmitt @ 2023-02-16 12:21 UTC (permalink / raw)
To: grub-devel; +Cc: daniel.kiper, development
Hi,
On Thu, 16 Feb 2023 01:15:01 -0600, Glenn Washburn
<development@efficientek.com> wrote:
> Document that the functional test requires the package xfonts-unifont
>
> Signed-off-by: Glenn Washburn <development@efficientek.com>
> ---
> INSTALL | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/INSTALL b/INSTALL
> index 620dcceb48..d1d5a6b88a 100644
> --- a/INSTALL
> +++ b/INSTALL
> @@ -70,6 +70,7 @@ Prerequisites for make-check:
> * xorriso 1.2.9 or later, for grub-mkrescue and grub-shell
> * wamerican, for grub-fs-tester
> * mtools, FAT tools for EFI platforms
> +* xfonts-unifont, for the functional tests
>
> * If running a Linux kernel the following modules must be loaded:
> - fuse, loop
Reviewed-by: Thomas Schmitt <scdbackup@gmx.net>
Have a nice day :)
Thomas
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 2/2] docs: Document that the functional test requires the package xfonts-unifont
2023-02-16 7:15 ` [PATCH 2/2] docs: Document that the functional test requires the package xfonts-unifont Glenn Washburn
2023-02-16 12:21 ` Thomas Schmitt
@ 2023-02-24 15:54 ` Daniel Kiper
2023-02-26 6:56 ` Glenn Washburn
1 sibling, 1 reply; 8+ messages in thread
From: Daniel Kiper @ 2023-02-24 15:54 UTC (permalink / raw)
To: Glenn Washburn; +Cc: grub-devel, Thomas Schmitt
On Thu, Feb 16, 2023 at 01:15:01AM -0600, Glenn Washburn wrote:
> Signed-off-by: Glenn Washburn <development@efficientek.com>
> ---
> INSTALL | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/INSTALL b/INSTALL
> index 620dcceb48..d1d5a6b88a 100644
> --- a/INSTALL
> +++ b/INSTALL
> @@ -70,6 +70,7 @@ Prerequisites for make-check:
> * xorriso 1.2.9 or later, for grub-mkrescue and grub-shell
> * wamerican, for grub-fs-tester
> * mtools, FAT tools for EFI platforms
> +* xfonts-unifont, for the functional tests
I would just add it is needed for grub-mkfont build too. I can do it for
you before push...
Otherwise Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com> for both patches...
Daniel
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 2/2] docs: Document that the functional test requires the package xfonts-unifont
2023-02-24 15:54 ` Daniel Kiper
@ 2023-02-26 6:56 ` Glenn Washburn
2023-02-28 17:25 ` Daniel Kiper
0 siblings, 1 reply; 8+ messages in thread
From: Glenn Washburn @ 2023-02-26 6:56 UTC (permalink / raw)
To: Daniel Kiper; +Cc: grub-devel, Thomas Schmitt
On Fri, 24 Feb 2023 16:54:28 +0100
Daniel Kiper <dkiper@net-space.pl> wrote:
> On Thu, Feb 16, 2023 at 01:15:01AM -0600, Glenn Washburn wrote:
> > Signed-off-by: Glenn Washburn <development@efficientek.com>
> > ---
> > INSTALL | 1 +
> > 1 file changed, 1 insertion(+)
> >
> > diff --git a/INSTALL b/INSTALL
> > index 620dcceb48..d1d5a6b88a 100644
> > --- a/INSTALL
> > +++ b/INSTALL
> > @@ -70,6 +70,7 @@ Prerequisites for make-check:
> > * xorriso 1.2.9 or later, for grub-mkrescue and grub-shell
> > * wamerican, for grub-fs-tester
> > * mtools, FAT tools for EFI platforms
> > +* xfonts-unifont, for the functional tests
>
> I would just add it is needed for grub-mkfont build too. I can do it
> for you before push...
Sure, although, the note that xfonts-unifont is needed for grub-mkfont
makes more sense to me up in the build requirements. The above line is
in a section specifically for make check testing prereqs. I would expect
someone trying to figure out why grub-mkfont is failing to build would
look in the build requirements section.
Glenn
>
> Otherwise Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com> for
> both patches...
>
> Daniel
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 2/2] docs: Document that the functional test requires the package xfonts-unifont
2023-02-26 6:56 ` Glenn Washburn
@ 2023-02-28 17:25 ` Daniel Kiper
0 siblings, 0 replies; 8+ messages in thread
From: Daniel Kiper @ 2023-02-28 17:25 UTC (permalink / raw)
To: Glenn Washburn; +Cc: grub-devel, Thomas Schmitt
On Sun, Feb 26, 2023 at 12:56:22AM -0600, Glenn Washburn wrote:
> On Fri, 24 Feb 2023 16:54:28 +0100
> Daniel Kiper <dkiper@net-space.pl> wrote:
>
> > On Thu, Feb 16, 2023 at 01:15:01AM -0600, Glenn Washburn wrote:
> > > Signed-off-by: Glenn Washburn <development@efficientek.com>
> > > ---
> > > INSTALL | 1 +
> > > 1 file changed, 1 insertion(+)
> > >
> > > diff --git a/INSTALL b/INSTALL
> > > index 620dcceb48..d1d5a6b88a 100644
> > > --- a/INSTALL
> > > +++ b/INSTALL
> > > @@ -70,6 +70,7 @@ Prerequisites for make-check:
> > > * xorriso 1.2.9 or later, for grub-mkrescue and grub-shell
> > > * wamerican, for grub-fs-tester
> > > * mtools, FAT tools for EFI platforms
> > > +* xfonts-unifont, for the functional tests
> >
> > I would just add it is needed for grub-mkfont build too. I can do it
> > for you before push...
>
> Sure, although, the note that xfonts-unifont is needed for grub-mkfont
> makes more sense to me up in the build requirements. The above line is
> in a section specifically for make check testing prereqs. I would expect
> someone trying to figure out why grub-mkfont is failing to build would
> look in the build requirements section.
Good point! I have merged patch as is. If you could make another patch
which adds xfonts-unifont to build requirements that would be perfect.
Daniel
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2023-02-28 17:26 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-16 7:14 [PATCH 0/2] Tests unifont Glenn Washburn
2023-02-16 7:15 ` [PATCH 1/2] tests: Return hard error for functional test when unicode.pf2 does not exist Glenn Washburn
2023-02-16 12:21 ` Thomas Schmitt
2023-02-16 7:15 ` [PATCH 2/2] docs: Document that the functional test requires the package xfonts-unifont Glenn Washburn
2023-02-16 12:21 ` Thomas Schmitt
2023-02-24 15:54 ` Daniel Kiper
2023-02-26 6:56 ` Glenn Washburn
2023-02-28 17:25 ` Daniel Kiper
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.