diff options
author | Frans Kaashoek <[email protected]> | 2020-08-27 07:05:13 -0400 |
---|---|---|
committer | Frans Kaashoek <[email protected]> | 2020-08-28 09:00:41 -0400 |
commit | de434fd933a07fba80d16441a5cd70ebebcde518 (patch) | |
tree | 657619065e513d6078c7457316cc1d1db11d943b | |
parent | 0b4e78f3a94baae548b535ac8de80d2ce4c963c8 (diff) | |
download | xv6-labs-de434fd933a07fba80d16441a5cd70ebebcde518.tar.gz xv6-labs-de434fd933a07fba80d16441a5cd70ebebcde518.tar.bz2 xv6-labs-de434fd933a07fba80d16441a5cd70ebebcde518.zip |
Remove obselete ifdef that shouldn't have been there ever
-rw-r--r-- | user/usertests.c | 4 |
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) { |