summaryrefslogtreecommitdiff
path: root/manual-tests
Commit message (Collapse)AuthorAgeFilesLines
* Update FSF license notices to use URL instead of addressJoseph Marrero2021-12-071-3/+1
|
* manual-tests: Fix unused variablesColin Walters2021-04-071-3/+0
| | | | | lgtm.com harshly makes our JS grade "D" due to these unused variables.
* Add SPDX-License-Identifier to source filesMarcus Folkesson2018-01-301-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | SPDX License List is a list of (common) open source licenses that can be referred to by a “short identifier”. It has several advantages compared to the common "license header texts" usually found in source files. Some of the advantages: * It is precise; there is no ambiguity due to variations in license header text * It is language neutral * It is easy to machine process * It is concise * It is simple and can be used without much cost in interpreted environments like java Script, etc. * An SPDX license identifier is immutable. * It provides simple guidance for developers who want to make sure the license for their code is respected See http://spdx.org for further reading. Signed-off-by: Marcus Folkesson <marcus.folkesson@gmail.com> Closes: #1439 Approved by: cgwalters
* tests/delta-crosscheck: Disable fsyncColin Walters2017-12-011-0/+1
| | | | | | | | I was running this recently to test the last delta write changes, and this helps. We should add an option to repo-init to make this easier at some point. Closes: #1356 Approved by: jlebon
* lib: Minor static delta fixesColin Walters2017-10-301-3/+3
| | | | | | | | | | | | | | | | | | First, the manual crosscheck script bitrotted; it got caught up in the "use libtest repo creation wrapper" bit, and also it seems like at some point `pull --require-static-deltas` changed meaning when dealing with `file:///` repos. I have more work to unwind that. Next, I'm seeing a delta failure which looks like a static delta miscompilation with rollsums; change the compiler to print out the source object too, which helped me debug this. And finally in the processing code, fix incorrect error prefixing, which was misleading. Closes: #1311 Approved by: ashcrow
* repo+tests: Add [core]disable-xattrs=true, use it on overlayfsColin Walters2017-03-241-1/+1
| | | | | | | | | | | | | | | | | | | | | | There are a lot of things suboptimal about this approach, but on the other hand we need to get our CI back up and running. The basic approach is to - in the test suite, detect if we're on overlayfs. If so, set a flag in the repo, which gets picked up by a few strategic places in the core to turn on "ignore xattrs". I also had to add a variant of this for the sysroot work. The core problem here is while overlayfs will let us read and see the SELinux labels, it won't let us write them. Down the line, we should improve this so that we can selectively ignore e.g. `security.*` attributes but not `user.*` say. Closes: https://github.com/ostreedev/ostree/issues/758 Closes: #759 Approved by: jlebon
* tests/delta-crosscheck: Add missing --fromColin Walters2016-07-291-3/+3
| | | | | | | | Otherwise we generate a static delta from the *previous* and get confused. To make doubly sure, add `--require-static-deltas` to pull. Closes: #416 Approved by: jlebon
* Fix make syntax-checkGiuseppe Scrivano2016-03-011-1/+0
| | | | Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
* manual-tests: New static-delta-generate-crosscheck.shColin Walters2016-02-141-0/+62
| | | | | I wanted to test static deltas vs a repo with "real" content in it from Fedora Atomic.
* manual-tests: New directory with custom test scriptsColin Walters2014-02-141-0/+85
This is just a demo script.