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

Initial steps of Mutation testing #18984

Merged
merged 24 commits into from Nov 16, 2017
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
abbdcf0
XMLHTTPRequest Mutator - Initial step Mutation testing
dsandeephegde Oct 19, 2017
0d2ad9a
Checking the wpt test failures/success.
dsandeephegde Oct 25, 2017
ba21529
Added Test Mapping framework and running through a path.
dsandeephegde Oct 25, 2017
af605a6
Added Mutation Test to CI
dsandeephegde Oct 25, 2017
445ab9a
Reverting wrong comment.
dsandeephegde Oct 25, 2017
58ab11c
Fixed few tidy errors
dsandeephegde Oct 25, 2017
c2d46c3
Fixed json tidy error
dsandeephegde Oct 25, 2017
6688b8a
Changed method to mutate a line of code
dsandeephegde Oct 25, 2017
2b8b98d
Removed build and wpt-test output from mutation test log and refactor…
dsandeephegde Oct 25, 2017
5366264
Added Readme.md file for mutation testing
panup21091993 Oct 26, 2017
5cc498d
Loging success message on mutation test success
dsandeephegde Oct 27, 2017
ffbabf4
Added randomness to the mutation strategy
dsandeephegde Oct 31, 2017
d24d6ac
Skipping mutation test for file with local changes
dsandeephegde Nov 6, 2017
84f694d
Added more information in Mutation Test Readme
dsandeephegde Nov 8, 2017
f6f4545
fixed tidy error
dsandeephegde Nov 8, 2017
6e66c0d
Corrected typo in Readme
dsandeephegde Nov 11, 2017
b8199e1
Changed readme saying wildcard not allowed in test_mapping.josn
dsandeephegde Nov 11, 2017
cc6c2ee
Added mutation test summary and made it exit with relevant exit code
dsandeephegde Nov 12, 2017
ed47f89
Changed invocation of muatation test in CI to bash script to use virt…
dsandeephegde Nov 13, 2017
2f900a0
Added PS1 variable before activating virtualenv
dsandeephegde Nov 13, 2017
61794f8
Made test summary more descriptive and Updated Readme
dsandeephegde Nov 14, 2017
f817a9c
Refactored mutate random line method
dsandeephegde Nov 14, 2017
a9493d0
Corrected a typo
dsandeephegde Nov 14, 2017
b8c6d14
Reveting accidental mutant commit
dsandeephegde Nov 16, 2017
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Prev

Reveting accidental mutant commit

  • Loading branch information
dsandeephegde committed Nov 16, 2017
commit b8c6d144f3445bc969a3bc46a6117226d1097cc1
@@ -213,7 +213,7 @@ impl XMLHttpRequest {
}

fn sync_in_window(&self) -> bool {
self.sync.get() || self.global().is::<Window>()
self.sync.get() && self.global().is::<Window>()
}

fn initiate_async_xhr(context: Arc<Mutex<XHRContext>>,
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.