Path:
tests/integration/features/html/incremental_generation/02_when_changes_regenerate_immediate_neighbours/test.itest
Lines:
36
Non-empty lines:
31
Non-empty lines covered with requirements:
31 / 31 (100.0%)
Functions:
0
Functions covered by requirements:
0 / 0 (0.0%)
1
#
2
# @relation(SDOC-SRS-2, scope=file)
3
#
4
5
RUN: %strictdoc export %S --output-dir %T --no-parallelization | filecheck %s --dump-input=fail --check-prefix=CHECK-FIRST
6
CHECK-FIRST: Build search index
7
CHECK-FIRST: Published: Child doc
8
CHECK-FIRST: Published: Grandchild doc
9
CHECK-FIRST: Published: Parent doc
10
11
RUN: %strictdoc export %S --output-dir %T --no-parallelization | filecheck %s --dump-input=fail --check-prefix=CHECK-SECOND
12
CHECK-SECOND: All documents are up-to-date. Skipping the generation of a search index.
13
CHECK-SECOND: Skip: Child doc
14
CHECK-SECOND: Skip: Grandchild doc
15
CHECK-SECOND: Skip: Parent doc
16
17
RUN: %touch %S/parent.sdoc
18
RUN: %strictdoc export %S --output-dir %T --no-parallelization | filecheck %s --dump-input=fail --check-prefix=CHECK-THIRD
19
CHECK-THIRD: Build search index
20
CHECK-THIRD: Skip: Grandchild doc
21
CHECK-THIRD: Published: Child doc
22
CHECK-THIRD: Published: Parent doc
23
24
RUN: %touch %S/child.sdoc
25
RUN: %strictdoc export %S --output-dir %T --no-parallelization | filecheck %s --dump-input=fail --check-prefix=CHECK-FOURTH
26
CHECK-FOURTH: Build search index
27
CHECK-FOURTH: Published: Child doc
28
CHECK-FOURTH: Published: Grandchild doc
29
CHECK-FOURTH: Published: Parent doc
30
31
RUN: %touch %S/grandchild.sdoc
32
RUN: %strictdoc export %S --output-dir %T --no-parallelization | filecheck %s --dump-input=fail --check-prefix=CHECK-FIFTH
33
CHECK-FIFTH: Build search index
34
CHECK-FIFTH: Skip: Parent doc
35
CHECK-FIFTH: Published: Child doc
36
CHECK-FIFTH: Published: Grandchild doc