summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrans Kaashoek <[email protected]>2020-08-27 07:05:13 -0400
committerFrans Kaashoek <[email protected]>2020-08-27 07:05:13 -0400
commit2ec9c6ed66629fd5b833f06af2080eab46c0af35 (patch)
tree657619065e513d6078c7457316cc1d1db11d943b
parentd7e5f269106f4b76fcbd90331a3b44f879ee9c54 (diff)
downloadxv6-labs-2ec9c6ed66629fd5b833f06af2080eab46c0af35.tar.gz
xv6-labs-2ec9c6ed66629fd5b833f06af2080eab46c0af35.tar.bz2
xv6-labs-2ec9c6ed66629fd5b833f06af2080eab46c0af35.zip
Remove obselete ifdef that shouldn't have been there ever
-rw-r--r--user/usertests.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/user/usertests.c b/user/usertests.c
index db042e6..004c948 100644
--- a/user/usertests.c
+++ b/user/usertests.c
@@ -2723,12 +2723,8 @@ main(int argc, char *argv[])
}
printf("usertests starting\n");
-#ifdef SOL_LAZY1
- int free0 = 32*1024*1024;
-#else
int free0 = countfree();
int free1 = 0;
-#endif
int fail = 0;
for (struct test *t = tests; t->s != 0; t++) {
if((justone == 0) || strcmp(t->s, justone) == 0) {