Browse Source

Consistently use 'relics' term instead of 'artifacts'

Alois Mahdal 2 years ago
parent
commit
f38bbb73f7
1 changed files with 14 additions and 14 deletions
  1. 14
    14
      guidelines/hierarchy.md

+ 14
- 14
guidelines/hierarchy.md View File

@@ -72,7 +72,7 @@ Your test suite goes here.  How to structure files under this directory
72 72
 will most probably depend on the test framework you use.
73 73
 
74 74
 
75
-### artifacts ###
75
+### relics ###
76 76
 
77 77
 If your test suite creates files that you usually need to review,
78 78
 this is a good place.  Subdirectories here should bear a timestamp in
@@ -118,19 +118,6 @@ A "living" example: [shellfu][2]:
118 118
     ├── LICENSE             # \
119 119
     ├── Makefile            #  Pretty much standard files...
120 120
     ├── README.md           # /
121
-    ├── artifacts
122
-    │   ├── artifacts-inigrep_inigrep-20161202-073432
123
-    │   │   ├── TF_ENUMERATED_SUBTESTS
124
-    │   │   ├── TF_FILTERED_SUBTESTS
125
-    │   │   ├── TF_RUN
126
-    │   │   ├── oracle      # \
127
-    │   │   │   └── ...     #   artifacts are now huge since 
128
-    │   │   ├── result      #   I ran a lot of tests recently
129
-    │   │   │   └── ...     # /
130
-    │   │   └── test
131
-    │   │       └── ...
132
-    │   └── artifacts-shellfu_api-20161202-081440
133
-    │       └── ...
134 121
     ├── mkit.ini            # <- MKit meta-data file
135 122
     ├── notes               # <- my design notes, although
136 123
     │   └── style.md        #    most are still in my head :)
@@ -140,6 +127,19 @@ A "living" example: [shellfu][2]:
140 127
     │   │   ├── control     #   alpha RPMs and .deb's
141 128
     │   │   └── ...         #   (so far, probably for good)
142 129
     │   └── shellfu.spec    # /
130
+    ├── relics
131
+    │   ├── relics-inigrep_inigrep-20161202-073432
132
+    │   │   ├── TF_ENUMERATED_SUBTESTS
133
+    │   │   ├── TF_FILTERED_SUBTESTS
134
+    │   │   ├── TF_RUN
135
+    │   │   ├── oracle      # \
136
+    │   │   │   └── ...     #   relics are now huge since 
137
+    │   │   ├── result      #   I ran a lot of tests recently
138
+    │   │   │   └── ...     # /
139
+    │   │   └── test
140
+    │   │       └── ...
141
+    │   └── relics-shellfu_api-20161202-081440
142
+    │       └── ...
143 143
     ├── src
144 144
     │   ├── bin                     # \
145 145
     │   │   ├── shellfu-doc         #   here most of the "meat" lives,