diff options
author | Theodore Ts'o <tytso@mit.edu> | 1997-10-25 23:50:09 +0000 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 1997-10-25 23:50:09 +0000 |
commit | 4e27d7641a7741bf218994d1519a699fc9d0d1e1 (patch) | |
tree | 90c04d453e54696c933ec508bd9714c7b95f74f8 /tests | |
parent | 6e5eeba5731c1b471c9aed013ecc8d51d11c81b4 (diff) | |
download | e2fsprogs-4e27d7641a7741bf218994d1519a699fc9d0d1e1.tar.gz |
version.h:
Update version.h for interim release
ChangeLog, Makefile.in, test_icount.c:
Makefile.in (PROGS): Remove test_rel from the test programs that we
build for now.
test_icount.c: Fix some random lint warnings.
Makefile.in:
Fix typo in removing brel_ma.o and irel_ma.o from the Makefile
Diffstat (limited to 'tests')
-rw-r--r-- | tests/progs/ChangeLog | 7 | ||||
-rw-r--r-- | tests/progs/Makefile.in | 2 | ||||
-rw-r--r-- | tests/progs/test_icount.c | 4 |
3 files changed, 9 insertions, 4 deletions
diff --git a/tests/progs/ChangeLog b/tests/progs/ChangeLog index 52b8a780..5d36eccb 100644 --- a/tests/progs/ChangeLog +++ b/tests/progs/ChangeLog @@ -1,3 +1,10 @@ +Sat Oct 25 18:50:33 1997 Theodore Ts'o <tytso@rsts-11.mit.edu> + + * Makefile.in (PROGS): Remove test_rel from the test programs that + we build for now. + + * test_icount.c: Fix some random lint warnings. + Tue Jun 17 01:33:20 1997 Theodore Ts'o <tytso@rsts-11.mit.edu> * Release of E2fsprogs 1.11 diff --git a/tests/progs/Makefile.in b/tests/progs/Makefile.in index e740944f..25a74280 100644 --- a/tests/progs/Makefile.in +++ b/tests/progs/Makefile.in @@ -13,7 +13,7 @@ INSTALL = @INSTALL@ MK_CMDS= ../../lib/ss/mk_cmds -PROGS= test_rel test_icount +PROGS= test_icount TEST_REL_OBJS= test_rel.o test_rel_cmds.o diff --git a/tests/progs/test_icount.c b/tests/progs/test_icount.c index 588e90f3..5156cfa0 100644 --- a/tests/progs/test_icount.c +++ b/tests/progs/test_icount.c @@ -222,8 +222,7 @@ void do_dump(int argc, char **argv) void do_validate(int argc, char **argv) { errcode_t retval; - ino_t size; - + if (check_icount(argv[0])) return; retval = ext2fs_icount_validate(test_icount, stdout); @@ -236,7 +235,6 @@ void do_validate(int argc, char **argv) void do_get_size(int argc, char **argv) { - errcode_t retval; ino_t size; if (check_icount(argv[0])) |