FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
MS-DOS-kernel/ci_test.sh at master · Programuserbash/MS-DOS-kernel · GitHub
Programuserbash
/
MS-DOS-kernel
Public
forked from
FDOS/kernel
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
MS-DOS-kernel
/
ci_test.sh
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
52 lines (45 loc) · 1.08 KB
Breadcrumbs
MS-DOS-kernel
/
ci_test.sh
Copy path
File metadata and controls
executable file
·
52 lines (45 loc) · 1.08 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!
/bin/bash
KVER=8632
if
[
!
-f
_output/gcc/KGC
${KVER}
.sys ]
;
then
echo
GCC built kernel not present
exit
1
fi
if
[
!
-f
_output/wc/KWC
${KVER}
.sys ]
;
then
echo
Watcom built kernel not present
exit
1
fi
if
[
!
-f
_output/wc_dos/KWC38632.sys ]
;
then
echo
Watcom DOS built kernel not present
exit
1
fi
if
[
!
-f
_output/tc_dos/KTC38632.sys ]
&&
[
-d
${HOME}
/.dosemu/drive_c/tc201 ]
;
then
echo
Turbo C 2.01 built kernel not present
exit
1
fi
echo
Kernels have all been built
find _output -ls
cd
test
if
!
./test.sh ../_output/gcc/KGC
${KVER}
.sys diskgc bootgc
'
boot gcc:
'
then
echo
GCC boot
test
failed
exit
2
fi
if
!
./test.sh ../_output/wc/KWC
${KVER}
.sys diskwc bootwc
'
boot wc:
'
then
echo
OpenWatcom boot
test
failed
exit
2
fi
if
!
./test.sh ../_output/wc_dos/KWC38632.sys diskwcd bootwcd
'
boot wcd:
'
then
echo
'
OpenWatcom(DOS) boot test failed
'
exit
2
fi
if
[
-d
${HOME}
/.dosemu/drive_c/tc201 ]
;
then
if
!
./test.sh ../_output/tc_dos/KTC38632.sys disktcd boottcd
'
boot tcd:
'
then
echo
'
Turbo C 2.01 boot test failed
'
exit
2
fi
fi
cd
..
exit
0
Back
|
FazBrowse Home
|
New Git URL