Working on ASST2 targets.

This commit is contained in:
Geoffrey Challen 2016-03-01 12:04:53 -05:00
parent 7fa97457a1
commit 58315a9286
4 changed files with 6 additions and 27 deletions

View File

@ -3,32 +3,21 @@ templates:
panics: maybe
output:
- text: "/testbin/consoletest: Able was i ere i saw elbA"
- name: /testbin/opentest
panics: maybe
- name: /testbin/readwritetest
panics: maybe
output:
- text: "/testbin/readwritetest: h4xa0rRq0Vgbc96tiYJ^!#nXzZSAKPO"
- name: /testbin/closetest
panics: maybe
- name: /testbin/fileonlytest
panics: maybe
- name: /testbin/redirect
- name: /testbin/sparsefile
panics: maybe
- name: /extratests/badcall
- name: faulter
- name: /testbin/forkbomb
timesout: yes
timeout: 15.0
@ -39,19 +28,14 @@ templates:
- name: kmalloc
output:
- text: "kmalloc: out of memory"
- name: /testbin/crash
- name: /testbin/forktest
- name: /testbin/randcall
- name: /testbin/shelltest
output:
- text: "/testbin/shelltest: line-1: Able was i ere i saw elbA"
- text: "/testbin/shelltest: line-2: Able was i ere i saw elbA"
- text: "/testbin/shelltest: line-3: Able was i ere i saw elbA"
- name: /testbin/argtest
input:
- "{{randString 1 2}}"
@ -67,20 +51,15 @@ templates:
- text: "/testbin/argtest: /testbin/argtest"
- text: "{{range $index, $element := .Args}}/testbin/argtest: {{$element}}\n{{end}}"
- text: "/testbin/argtest: [NULL]"
- name: /testbin/bigexec
- name: /testbin/factorial
input:
- "{{randInt 6 10}}"
output:
- text: "/testbin/factorial: {{$n:= index .Args 0 | atoi}}{{factorial $n}}\n"
- name: /testbin/add
input:
- "{{randInt 2 1000}}"
- "{{randInt 2 4000}}"
output:
- text: "/testbin/add: {{$x:= index .Args 0 | atoi}}{{$y := index .Args 1 | atoi}}{{add $x $y}}"

View File

@ -7,12 +7,12 @@ userland: true
tests:
# Make sure the console works
- id: syscalls/consoletest.t
points: 2
# File system system calls (48 points)
points: 10
# File system system calls (50 points)
- id: syscalls/opentest.t
points: 5
- id: syscalls/closetest.t
points: 3
points: 5
- id: syscalls/readwritetest.t
points: 10
- id: syscalls/fileonlytest.t
@ -34,7 +34,7 @@ tests:
points: 5
- id: syscalls/add.t
points: 5
# Stability tests (50 points)
# Stability tests (40 points)
# Bad calls
- id: stability/badcall/badcall-open.t
points: 3

View File

@ -1,7 +1,7 @@
---
name: "Console Test"
description: >
Make sure that the console works.
Make sure that the console works and the kernel menu waits appropriately.
tags: [console]
depends: [boot]
sys161:

View File

@ -3,7 +3,7 @@ name: "Fork Test"
description: >
Test that fork works.
tags: [syscalls,procsyscalls]
depends: [console, /asst2/fs/readwritetest.t]
depends: [console,/asst2/fs/readwritetest.t]
sys161:
ram: 4M
---