Skip to content

Commit 2c0ed98

Browse files
committed
python: remove uninformative headers
1 parent 1068add commit 2c0ed98

7 files changed

Lines changed: 0 additions & 7 deletions

File tree

python/ql/test/library-tests/ControlFlow/evaluation-order/NewCfgBasicBlockAnnotationGap.ql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
/**
22
* New-CFG version of BasicBlockAnnotationGap.
33
*
4-
* Original:
54
* Checks that within a basic block, if a node is annotated then its
65
* successor is also annotated (or excluded). A gap in annotations
76
* within a basic block indicates a missing annotation, since there

python/ql/test/library-tests/ControlFlow/evaluation-order/NewCfgBasicBlockOrdering.ql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
/**
22
* New-CFG version of BasicBlockOrdering.
33
*
4-
* Original:
54
* Checks that within a single basic block, annotations appear in
65
* increasing minimum-timestamp order.
76
*/

python/ql/test/library-tests/ControlFlow/evaluation-order/NewCfgConsecutiveTimestamps.ql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
/**
22
* New-CFG version of ConsecutiveTimestamps.
33
*
4-
* Original:
54
* Checks that consecutive annotated nodes have consecutive timestamps:
65
* for each annotation with timestamp `a`, some CFG node for that annotation
76
* must have a next annotation containing `a + 1`.

python/ql/test/library-tests/ControlFlow/evaluation-order/NewCfgNeverReachable.ql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
/**
22
* New-CFG version of NeverReachable.
33
*
4-
* Original:
54
* Checks that expressions annotated with `t.never` either have no CFG
65
* node, or if they do, that the node is not reachable from its scope's
76
* entry (including within the same basic block).

python/ql/test/library-tests/ControlFlow/evaluation-order/NewCfgNoBackwardFlow.ql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
/**
22
* New-CFG version of NoBackwardFlow.
33
*
4-
* Original:
54
* Checks that time never flows backward between consecutive timer annotations
65
* in the CFG. For each pair of consecutive annotated nodes (A -> B), there must
76
* exist timestamps a in A and b in B with a < b.

python/ql/test/library-tests/ControlFlow/evaluation-order/NewCfgNoSharedReachable.ql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
/**
22
* New-CFG version of NoSharedReachable.
33
*
4-
* Original:
54
* Checks that two annotations sharing a timestamp value are on
65
* mutually exclusive CFG paths (neither can reach the other).
76
*/

python/ql/test/library-tests/ControlFlow/evaluation-order/NewCfgStrictForward.ql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
/**
22
* New-CFG version of StrictForward.
33
*
4-
* Original:
54
* Stronger version of NoBackwardFlow: for consecutive annotated nodes
65
* A -> B that both have a single timestamp (non-loop code) and B does
76
* NOT dominate A (forward edge), requires max(A) < min(B).

0 commit comments

Comments
 (0)