os161/test161/tests/vm/sbrktest.t
Scott Haseley 0207e6b066 More tests for ASST3.2
Added 2 new sbrktests, one to test a huge sbrk with only touch a few pages (shouldn't crash),
and another to make sure pages are getting freed when the breakpoint moves down. Also, added
a stacktest that checks that 4M stacks are supported and pages are allocated on-demand.
2016-04-14 17:47:54 -04:00

29 lines
561 B
Perl

---
name: "sbrk Test"
description: >
"Test various properites of your vm's heap management using
the sbrk() system call."
tags: [sbrk]
depends: [not-dumbvm-vm, shell]
sys161:
ram: 2M
---
khu
$ /testbin/sbrktest 1
$ /testbin/sbrktest 2
$ /testbin/sbrktest 3
$ /testbin/sbrktest 4
$ /testbin/sbrktest 5
$ /testbin/sbrktest 6
$ /testbin/sbrktest 7
$ /testbin/sbrktest 8
$ /testbin/sbrktest 11
$ /testbin/sbrktest 12
$ /testbin/sbrktest 13
$ /testbin/sbrktest 14
$ /testbin/sbrktest 15
$ /testbin/sbrktest 17
$ /testbin/sbrktest 22
$ /testbin/sbrktest 23
khu