viewing logs

job succeeded

veritas

time taken
10 seconds
started at
Wed Jul 23 16:46:06 2025
updated at
Wed Jul 23 16:46:16 2025
log uuid
76c7812a-89f8-4560-82b1-e8ff2595707f
inspect the job's lambda expression
(lambda()
  `((task . "make-test")
    (project . "veritas")
    (branch-name . "trunk")            
    (clone-url . "https://codeberg.org/jjba23/veritas.git")))
    

starting new job...

-> running command: cd /etc/byggsteg/job-clone/veritas/trunk && uname -a
Linux wolk-jjba 6.15.5-gnu #1 SMP PREEMPT_DYNAMIC 1 x86_64 GNU/Linux

-> running command: cd /etc/byggsteg/job-clone/veritas/trunk && git pull
Updating 586c4cc..1238a4f
Fast-forward
 README.org                   | 12 +++---
 src/veritas/assert.scm       | 34 ++++++++---------
 test/veritas/unit/simple.scm | 88 ++++++++++++++++++++++----------------------
 3 files changed, 67 insertions(+), 67 deletions(-)

-> running command: cd /etc/byggsteg/job-clone/veritas/trunk && git log --name-status HEAD^..HEAD
commit 1238a4fb69544d7621aaab10f0ef8a518bf8c82d
Author: Josep Bigorra <jjbigorra@gmail.com>
Date:   Wed Jul 23 15:05:05 2025 +0200

    rename expected to expect

M	README.org
M	src/veritas/assert.scm
M	test/veritas/unit/simple.scm

-> running command: cd /etc/byggsteg/job-clone/veritas/trunk && make test
make[1]: Entering directory '/etc/byggsteg/job-clone/veritas/trunk'

[INFO] 2025-07-23 16:46:07+02:00 - formatting all Scheme files
find . -maxdepth 8 -name "*.scm" -type f -exec guix style -f {} \;
guix shell -m manifest.scm -- \
	guile --fresh-auto-compile -L ./src \
	-L ./test \
	-c '((@ (veritas runner) run-unit-tests))'

scanning directories for unit tests...
scanning present working directory for unit tests...

found unit tests: (simple.scm)


+----------------------------------------------+
[? suite] Error Handling Tests
  [? test] Division by Zero Error
    [?? assert] Should signal error on division by zero
    ? pass - success catching error: misc-error: (#f Division by zero () #f)
  [? test] No Error on Valid Division
    [?? assert] Should not signal error on valid division
    ? pass - success running without errors
    [?? assert] Valid division result
    ? pass - expect: 5, got: 5
+----------------------------------------------+
[? suite] Basic Suite
  [? test] Basic Numeric Tests
    ? pass - expect: 1, got: 1
    ? pass - expect: 1, got: 1
    [?? assert] checks if addition works
    ? pass - expect: 4, got: 4
    ? pass - expect: 0, got: 0
  [? test] Check that function calls work
    ? pass - expect: 42, got: 42
+----------------------------------------------+
[? suite] Predicate Tests
  [? test] List Predicates
    [?? assert] Empty list should be null
    ? pass - expect: #t, got: #t
    [?? assert] Pair should be a pair
    ? pass - expect: #t, got: #t
    [?? assert] Empty list should not be a pair
    ? pass - expect: #f, got: #f
    [?? assert] Non-empty list should not be null
    ? pass - expect: #f, got: #f
  [? test] Even Number Checks
    [?? assert] 1 should not be even
    ? pass - expect: #f, got: #f
    [?? assert] 7 should not be even
    ? pass - expect: #f, got: #f
    [?? assert] 4 should be even
    ? pass - expect: #t, got: #t
    [?? assert] 0 should be even
    ? pass - expect: #t, got: #t
  [? test] some test without suite
    ? pass - expect: 1, got: 1
+----------------------------------------------+
[? suite] str
  [? test] String Operation Tests
    ? pass - expect: #f, got: #f
    ? pass - expect: hello world, got: hello world
    ? pass - expect: #t, got: #t
+----------------------------------------------+
[? suite] List Manipulation Tests
  [? test] Get First Element
    [?? assert] First element of a number list
    ? pass - expect: 1, got: 1
    [?? assert] First element of a symbol list
    ? pass - expect: a, got: a
    [?? assert] First element of an empty list should be #f
    ? pass - expect: #f, got: #f
  [? test] List Length
    [?? assert] Length of empty list
    ? pass - expect: 0, got: 0
    [?? assert] Length of list with one element
    ? pass - expect: 1, got: 1
    [?? assert] Length of list with 3 elements
    ? pass - expect: 3, got: 3
  [? test] List Concatenation
    [?? assert] Concatenate non-empty list with empty
    ? pass - expect: (x y), got: (x y)
    [?? assert] Concatenate empty list with non-empty
    ? pass - expect: (a b), got: (a b)
    [?? assert] Concatenate two non-empty lists
    ? pass - expect: (1 2 3 4 5), got: (1 2 3 4 5)
    [?? assert] Concatenate two empty lists
    ? pass - expect: (), got: ()
+----------------------------------------------+
[? suite] Complex Data Structure Tests
  [? test] Association List Lookups
    [?? assert] Lookup 'name' in alist
    ? pass - expect: Alice, got: Alice
    [?? assert] Lookup non-existent key should be #f
    ? pass - expect: #f, got: #f
    [?? assert] Lookup 'age' in alist
    ? pass - expect: 30, got: 30
  [? test] Vector Operations
    [?? assert] Vector ref at index 1
    ? pass - expect: 2, got: 2
    [?? assert] Vector length
    ? pass - expect: 3, got: 3
    [?? assert] Vector ref at index 0
    ? pass - expect: 1, got: 1
+----------------------------------------------+
[? benchmark]
 
[?? run #0]
%     cumulative   self             
time   seconds     seconds  procedure
 92.31      0.31      0.28  override/fibers/events-impl.scm:80:0:pump-epoll-guardian
  7.69      0.02      0.02  fibers/scheduler.scm:360:0:yield-current-task
  0.00    728.52      0.00  veritas/unit/simple.scm:175:0:factorial
  0.00      0.33      0.00  anon #x158560c0
  0.00      0.31      0.00  %after-gc-thunk
  0.00      0.31      0.00  veritas/veritas.scm:136:84
---
Sample count: 13
Total time: 0.306485249 seconds (0.270886654 seconds in GC)

[?? run #1]
%     cumulative   self             
time   seconds     seconds  procedure
100.00      0.02      0.02  fibers/scheduler.scm:360:0:yield-current-task
  0.00    164.79      0.00  veritas/unit/simple.scm:175:0:factorial
  0.00      0.02      0.00  veritas/veritas.scm:136:84
  0.00      0.02      0.00  anon #x158560c0
---
Sample count: 1
Total time: 0.021276897 seconds (0.020144002 seconds in GC)
%     cumulative   self             
time   seconds     seconds  procedure
 80.00      0.28      0.28  fibers/scheduler.scm:360:0:yield-current-task
 20.00      0.33      0.07  override/fibers/events-impl.scm:80:0:pump-epoll-guardian
  0.00   1193.86      0.00  veritas/unit/simple.scm:175:0:factorial
  0.00      0.62      0.00  anon #x158560c0
  0.00      0.36      0.00  veritas/veritas.scm:136:84
  0.00      0.33      0.00  %after-gc-thunk
---
Sample count: 15
Total time: 0.355266297 seconds (0.313060847 seconds in GC)

[?? run #2]
No samples recorded.
%     cumulative   self             
time   seconds     seconds  procedure
 64.29      0.23      0.23  fibers/scheduler.scm:360:0:yield-current-task
 28.57      0.33      0.10  override/fibers/events-impl.scm:80:0:pump-epoll-guardian
  7.14   1175.51      0.03  veritas/unit/simple.scm:175:0:factorial
  0.00      0.56      0.00  anon #x158560c0
  0.00      0.36      0.00  veritas/veritas.scm:136:84
  0.00      0.33      0.00  %after-gc-thunk
---
Sample count: 14
Total time: 0.35700999 seconds (0.337877755 seconds in GC)

?? info - ran 8 tasks in: 0 seconds, 548849 microsecondsmake[1]: Leaving directory '/etc/byggsteg/job-clone/veritas/trunk'