Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Rework test framework, fix a number of related bugs #372

Merged
merged 43 commits into from
Mar 31, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
f42e007
Created initial implementation of revamped test.py
geky Dec 29, 2019
ed8341e
Reworked permutation generation in test framework and cleanup
geky Dec 30, 2019
53d2b02
Added reentrant and gdb testing mechanisms to test framework
geky Dec 31, 2019
eeaf536
Replaced emubd with rambd and filebd
geky Jan 3, 2020
1d2688a
Migrated test_files, test_dirs, test_format suites to new framework
geky Jan 11, 2020
b06ce54
Migrated the bulk of the feature-specific tests
geky Jan 13, 2020
5181ce6
Migrated the first of the tests with internal knowledge
geky Jan 14, 2020
ecc2857
Migrated bad-block tests
geky Jan 14, 2020
fb65057
Restructured block devices again for better test exploitation
geky Jan 16, 2020
9453ebd
Added/improved disk-reading debug scripts
geky Jan 19, 2020
f4b6a6b
Fixed issues with neighbor updates during moves
geky Jan 20, 2020
a5d614f
Added tests for power-cycled-relocations and fixed the bugs that fell…
geky Jan 22, 2020
b9d0695
Rewrote explode_asserts.py to be more efficient
geky Jan 25, 2020
52ef0c1
Fixed a crazy consistency issue in test.py
geky Jan 27, 2020
aab6aa0
Cleaned up test script and directory naming
geky Jan 27, 2020
517d341
Fixed more bugs, mostly related to ENOSPC on different geometries
geky Jan 29, 2020
77e3078
Added/fixed tests for noop writes (where bd error can't be trusted)
geky Jan 29, 2020
44d7112
Fixed tests/*.toml.* in .gitignore
geky Jan 29, 2020
f9c2fd9
Removed file outlining on ENOSPC in lfs_file_sync
geky Jan 30, 2020
6a55084
Modified readmdir/readtree to make reading non-truncated data easier
geky Jan 30, 2020
fe957de
Fixed broken wear-leveling when block_cycles = 2n-1
geky Feb 9, 2020
6530cb3
Fixed lfs_fs_size doubling metadata-pairs
geky Feb 9, 2020
02c84ac
Cleaned up dependent fixes on branch
geky Feb 9, 2020
b69cf89
Fixed CRC check when prog_size causes multiple CRCs per commit
geky Feb 10, 2020
9f546f1
Updated .travis.yml and added additional geometry constraints
geky Feb 10, 2020
f4b17b3
Added test.py support for tmpfs-backed disks
geky Feb 12, 2020
dcae185
Fixed typo in LFS_MKTAG_IF_ELSE
geky Feb 12, 2020
c7987a3
Restructured .travis.yml to span more jobs
geky Feb 16, 2020
d04b077
Fixed minor things to get CI passing again
geky Feb 17, 2020
0990296
Limited byte-level tests to native testing due to time
geky Feb 18, 2020
50fe8ae
Renamed test_format -> test_superblocks, tweaked superblock tests
geky Feb 19, 2020
a7dfae4
Minor tweaks to debugging scripts, fixed explode_asserts.py off-by-1
geky Feb 23, 2020
cb26157
Change assert to runtime check.
Dec 30, 2019
4677421
Added "evil" tests and detecion/recovery from bad pointers and infini…
geky Feb 24, 2020
d498b9f
(bugfix) adding line function to clear out all the global 'free' info…
Mar 24, 2020
5e5b5d8
(chore) updates from PR, we decided not to move forward with changing…
Mar 26, 2020
f17d3d7
Minor cleanup
Mar 26, 2020
f9dbec3
Added test case catching issues with errors during a lookahead scan
geky Mar 24, 2020
01e42ab
Merge pull request #401 from thrasher8390/bugfix/thrasher8390/issue-3…
geky Mar 29, 2020
ff84902
Moved out block device tracing into separate define
geky Mar 29, 2020
5137e4b
Last minute tweaks to debug scripts
geky Mar 30, 2020
6622f3d
Bumped minor version to v2.2
geky Mar 30, 2020
7257681
Merge branch 'master' into test-revamp
geky Mar 31, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@
blocks/
lfs
test.c
tests/*.toml.*
scripts/__pycache__
.gdb_history
Loading