Re: Mips-arc tests ever work?

2020-12-19 Thread Glenn Washburn
On Sat, 5 Dec 2020 21:28:05 +0100 John Paul Adrian Glaubitz wrote: > On 12/5/20 8:10 PM, Glenn Washburn wrote: > >>> So can anyone familiar with this tell me an appropriate machine > >>> type of the above listed to use instead of indy? Perhaps Vladimir > >>> who committed that code can chime in?

[PATCH 0/5] Testing improvements

2020-12-19 Thread Glenn Washburn
I've been working on getting continuous integration working in gitlab where testing is being done in an Ubuntu image. This patch series improves various tests. I've ordered the patches starting with the least controversial patches. The last two patches I suspect may have some deserve some attention

[PATCH 3/5] tests: Make setup errors in grub-fs-tester hard errors

2020-12-19 Thread Glenn Washburn
When a test program fails because it failed to setup the test properly, this does not indicate a failure in what is attempting to be tested because the test is never run. So exit with a hard error exit status to note this difference. This will allow easier detection of tests that are not actually b

[PATCH 4/5] tests: Fix partmap_test for arm*-efi, disk numbering has changed

2020-12-19 Thread Glenn Washburn
Perhaps using a newer UEFI firmware is the reason for the created test disk showing up as hd2 instead of hd3. Signed-off-by: Glenn Washburn --- tests/partmap_test.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/partmap_test.in b/tests/partmap_test.in index 6ef518b0a.

[PATCH 5/5] tests: Comment failing functional tests until we can get them working again

2020-12-19 Thread Glenn Washburn
Signed-off-by: Glenn Washburn --- grub-core/tests/lib/functional_test.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/grub-core/tests/lib/functional_test.c b/grub-core/tests/lib/functional_test.c index 96781fb39..16de3d275 100644 --- a/grub-core/tests/lib/functional_t

[PATCH 1/5] tests: Exit with skipped exit code when test not performed

2020-12-19 Thread Glenn Washburn
These tests were not performed and therefore did not pass, nor fail. This fixes odd behavior where the pseries_test will pass on i386-pc. Signed-off-by: Glenn Washburn --- tests/core_compress_test.in | 2 +- tests/pseries_test.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) di

[PATCH 2/5] tests: Make sure LANG is set properly for iso9660_test

2020-12-19 Thread Glenn Washburn
LANG must be set to something that supports international characters, otherwise xorriso will refuse to include the file with name having international characters, causing the test to fail. So if LANG is not set, set it to en_US.UTF-8, a very common UTF-8 locale. And if it is set, but does not look

Re: failing tests on sparc64-ieee1275 target

2020-12-19 Thread John Paul Adrian Glaubitz
Hello! On 12/19/20 7:29 AM, Glenn Washburn wrote: > I'm running the sparc tests and running into some odd failures. Is > anyone running these tests successfully? I've attached the > test-suite.log which shows a bash trace of each failing test. There are > many failing fs tests with hard errors, th