aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/java/com/google/devtools/build/skyframe
Commit message (Expand)AuthorAge
* Get rid of boolean field in InMemoryNodeEntry. After adding the lastEvaluated...Gravatar Janak Ramakrishnan2016-06-28
* Add test in GraphConcurrencyTest for concurrent createIfAbsent and get calls.Gravatar Janak Ramakrishnan2016-06-24
* Minor change to add QueryableGraphBackedSkyFunctionEnvironment.Gravatar Janak Ramakrishnan2016-06-21
* Minor improvement to cycle detection algorithm: Do not recurse into done node...Gravatar Eric Fellheimer2016-06-21
* Add toString for NotifyingNodeEntry -- we lost this in commit 8be7fd0bb7cc8f0...Gravatar Janak Ramakrishnan2016-06-16
* Add EvaluationResultSubject#hasReverseDepsInGraphThat method.Gravatar Janak Ramakrishnan2016-05-27
* Fix bug in lazy removal of reverse deps -- there was one remaining case where...Gravatar Janak Ramakrishnan2016-05-18
* Remove reverse deps lazily, only when the node has finished building and we d...Gravatar Janak Ramakrishnan2016-05-17
* Stop converting temporary direct deps to a set. In almost all cases, this con...Gravatar Janak Ramakrishnan2016-05-16
* Allow Skyframe tests to use the NotifyingGraph and DeterministicGraph helpers...Gravatar Janak Ramakrishnan2016-05-11
* Add MemoizingEvaluatorTest#breakCycle to check that we have correct behavior ...Gravatar Janak Ramakrishnan2016-05-11
* Catch package lookup exceptions during AST lookupGravatar Kristina Chodorow2016-05-06
* Fix keep-going build with an existing cycle by only setting errorDepKey in a ...Gravatar Janak Ramakrishnan2016-03-29
* Return ErrorInfoSubject for EvaluationResultSubject#hasErrorEntryForKeyThat i...Gravatar Janak Ramakrishnan2016-03-28
* Clean up some testing code: @Before methods' call order is unspecified, so we...Gravatar Janak Ramakrishnan2016-03-28
* Add unsetComputedValue method to GraphTesterGravatar Mark Schaller2016-03-08
* Clean up some testing code: don't have following tests fail from the Tracking...Gravatar Janak Ramakrishnan2016-03-08
* Use static creation method for SkyKey. This allows interning SkyKeys as they ...Gravatar Janak Ramakrishnan2016-03-03
* Prevent new evaluations from starting if a done child's error is discovered. ...Gravatar Janak Ramakrishnan2016-02-23
* Allow for more flexibility in choices of Version for the GraphConcurrencyTest...Gravatar Shreya Bhattarai2016-02-11
* Allow ParallelEvaluator to not store errors alongside values if nodes recover...Gravatar Janak Ramakrishnan2016-02-11
* Don't check direct deps when doing change pruning. Since dependents of a node...Gravatar Janak Ramakrishnan2016-02-09
* Add Truth subject for ErrorInfo and improve one for EvaluationResult.Gravatar Janak Ramakrishnan2016-02-05
* Intern IntVersions.Gravatar Janak Ramakrishnan2016-01-28
* Fix SkyframeBuilder's error handling, and change the contract of EvaluationRe...Gravatar Janak Ramakrishnan2016-01-28
* Set test_class for java_test test target where it is neededGravatar Damien Martin-Guillerez2016-01-19
* Add catastrophe field to EvaluationResult so that callers can identify the ca...Gravatar Janak Ramakrishnan2016-01-04
* Use Bazel Preconditions variant which avoids varargs array creationGravatar Mark Schaller2015-12-10
* Repurpose the not-meaningfully-used ErrorInfo#isTransient to mean "is transit...Gravatar Nathan Harmata2015-12-10
* Extract ReverseDepsUtil interface so that InMemoryNodeEntry can be partially ...Gravatar Janak Ramakrishnan2015-11-24
* Tolerate independent cycle underneath main cycle during a re-evaluation.Gravatar Janak Ramakrishnan2015-11-24
* Allow SkyValues to be marked not "comparable". Such values are not compared f...Gravatar Eric Fellheimer2015-11-19
* Avoid re-evaluating a parent node when a child is found to be unchanged from ...Gravatar Janak Ramakrishnan2015-11-19
* Compare GroupedLists without regard to the order within a given group. Also m...Gravatar Janak Ramakrishnan2015-11-19
* Don't repeatedly add and remove rdeps in GraphConcurrencyTest -- we don't do ...Gravatar Janak Ramakrishnan2015-11-18
* Return rdeps when marking a node dirtyGravatar Mark Schaller2015-11-18
* Open source skyframe testsGravatar Kristina Chodorow2015-11-17
* Add test for case when node is no longer needed, then explicitly evaluated, t...Gravatar Janak Ramakrishnan2015-11-17
* Migrate blaze from their own duplicated copy of MoreAsserts and use Truth ins...Gravatar Googler2015-11-11
* Add tests for nodes that are not used in the graph, but then are used in a la...Gravatar Janak Ramakrishnan2015-11-10
* Don't remove a reverse dep after it was added in GraphConcurrencyTest. That n...Gravatar Janak Ramakrishnan2015-11-03
* Cleanup ValueVisitor (and dirty QuiescingExecutor)Gravatar Mark Schaller2015-11-02
* Make some things in GraphConcurrencyTest protected so subclasses can use them.Gravatar Nathan Harmata2015-10-29
* Fix race in MemoizingEvaluatorTest#crashAfterInterruptCrashes by ensuring tha...Gravatar Janak Ramakrishnan2015-10-28
* Remove unnecessary use of Reporter.Gravatar Ulf Adams2015-10-27
* Simplify uses of EventCollector.Gravatar Ulf Adams2015-10-27
* Singleton-ify ErrorTransienceValueGravatar Michajlo Matijkiw2015-10-22
* Remove wildcard of SkyFunctionName, as it is finalGravatar Mark Schaller2015-10-22
* Minor cleanups to GraphTesterGravatar Mark Schaller2015-10-22
* Keep track of any RuntimeExceptions thrown during evaluation. Previously, Run...Gravatar Janak Ramakrishnan2015-10-21