Skip to content

Commit

Permalink
include KUnit VERSION in test output"
Browse files Browse the repository at this point in the history
  • Loading branch information
unreal committed Sep 28, 2016
1 parent c5b42e1 commit cfdfe08
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/kunit.kl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ PROGRAM kunit
%NOLOCKGROUP
%UNINITVARS
CONST
VERSION = '0.1.0'
VERSION = '1.0.0'
LINE_WRAP = 40
PIPE_FILE = 'PIP:KUNIT.DAT'
FAIL_FILE = 'PIP:KUNIT_FAIL.DAT'
Expand Down Expand Up @@ -56,14 +56,14 @@ ROUTINE kunit_init
WRITE response (
'<!DOCTYPE html>',
'<html><head>',
'<title>KUnit</title>',
'<title>KUnit v',VERSION,'</title>',
'<style>body { padding: 20px; }</style>',
'<meta charset="UTF-8" />',
'</head><body>',
'<pre>', CR)
ENDIF

WRITE response ('KUnit', CR, CR)
WRITE response ('KUnit v', VERSION, CR, CR)

test_count = 0
fail_count = 0
Expand Down

0 comments on commit cfdfe08

Please sign in to comment.