Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

chore: backport maintenance/doc changes and prepare release for v1.9.1 #731

Merged
merged 11 commits into from
Oct 20, 2021
Prev Previous commit
chore: update CBMC CI submodules
  • Loading branch information
alex-chew committed Oct 20, 2021
commit e2b0d8e4cc925cf5fb627886e8c4509f060c209c
2 changes: 1 addition & 1 deletion verification/cbmc/templates
2 changes: 1 addition & 1 deletion verification/litani
Submodule litani updated 55 files
+9 −4 .gitignore
+91 −0 CHANGELOG
+9 −4 README.md
+20 −3 bin/validate-run
+78 −0 doc/bin/build-html-doc
+30 −0 doc/bin/uniquify-header-ids
+143 −0 doc/configure
+0 −4 doc/foot.html
+0 −124 doc/head.html
+0 −393 doc/index.md
+0 −12 doc/litani-flow.dot
+158 −0 doc/src/man/litani-add-job.scdoc
+77 −0 doc/src/man/litani-init.scdoc
+49 −0 doc/src/man/litani-run-build.scdoc
+396 −0 doc/templates/index.jinja.html
+8 −1 lib/capabilities.py
+112 −20 lib/graph.py
+235 −0 lib/job_outcome.py
+5 −1 lib/litani.py
+306 −80 lib/litani_report.py
+194 −0 lib/ninja.py
+306 −0 lib/process.py
+152 −0 lib/validation.py
+191 −200 litani
+0 −62 litani-progress
+29 −12 templates/dashboard.jinja.html
+38 −0 templates/memory-peak-box.jinja.gnu
+40 −0 templates/memory-trace.jinja.gnu
+223 −0 templates/outcome_table.jinja.html
+450 −14 templates/pipeline.jinja.html
+38 −0 templates/run-parallelism.jinja.gnu
+1 −2 templates/runtime-box.jinja.gnu
+6 −0 test/README
+0 −0 test/__init__.py
+71 −0 test/e2e/README
+145 −0 test/e2e/run
+0 −0 test/e2e/tests/__init__.py
+42 −0 test/e2e/tests/cwd.py
+63 −0 test/e2e/tests/no_pool_serialize.py
+53 −0 test/e2e/tests/no_pool_serialize_graph.py
+40 −0 test/e2e/tests/no_timed_out.py
+48 −0 test/e2e/tests/no_timed_out_timeout_ignored.py
+48 −0 test/e2e/tests/no_timed_out_timeout_ok.py
+76 −0 test/e2e/tests/pool_serialize.py
+57 −0 test/e2e/tests/pool_serialize_graph.py
+39 −0 test/e2e/tests/single_pool.py
+40 −0 test/e2e/tests/timed_out.py
+49 −0 test/e2e/tests/timed_out_timeout_ignored.py
+48 −0 test/e2e/tests/timed_out_timeout_ok.py
+22 −8 test/e2e/tests/zero_pool.py
+169 −0 test/run
+0 −0 test/unit/__init__.py
+0 −0 test/unit/lockable_directory.py
+263 −0 test/unit/outcome_table_decider.py
+43 −0 test/unit/status_parser.py