Skip to content

Commit bf54470

Browse files
Carl Gaycopybara-github
Carl Gay
authored andcommitted
update cl-protobufs.asd for test file renamings
PiperOrigin-RevId: 365042062
1 parent 3276ac8 commit bf54470

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

cl-protobufs.asd

+22-22
Original file line numberDiff line numberDiff line change
@@ -125,20 +125,20 @@
125125
;; TODO(cgay): do these tests really depend on each other in the ways that
126126
;; the :depends-on clauses imply? If so, why?
127127
;;
128-
;; lisp-service-test.lisp not included as the necessary fields in
128+
;; service-test.lisp is not included since the necessary fields in
129129
;; service-test.proto are not currently exported.
130130

131131
(:module "root-suite"
132132
:serial t
133133
:pathname ""
134134
:components ((:file "root-suite")))
135135

136-
(:module "wire-level-tests"
136+
(:module "wire-level-test"
137137
:serial t
138138
:pathname ""
139139
:depends-on ("packages")
140-
:components ((:file "varint-tests")
141-
(:file "wire-tests")))
140+
:components ((:file "varint-test")
141+
(:file "wire-test")))
142142

143143
(:module "descriptor-extensions"
144144
:serial t
@@ -166,23 +166,23 @@
166166
(:protobuf-source-file "unittest"
167167
:depends-on ("unittest_import"))))
168168

169-
(:module "object-level-tests"
169+
(:module "object-level-test"
170170
:serial t
171171
:pathname ""
172-
:depends-on ("wire-level-tests")
172+
:depends-on ("wire-level-test")
173173
:components ((:protobuf-source-file "serialization")
174-
(:file "serialization-tests")
175-
(:file "symbol-import-tests")))
174+
(:file "serialization-test")
175+
(:file "symbol-import-test")))
176176

177-
(:module "brown-tests"
177+
(:module "brown-test"
178178
:serial t
179179
:pathname ""
180-
:depends-on ("object-level-tests")
180+
:depends-on ("object-level-test")
181181
:components ((:protobuf-source-file "testproto1")
182182
(:protobuf-source-file "testproto2")
183-
(:file "quick-tests")))
183+
(:file "quick-test")))
184184

185-
(:module "lisp-reference-tests"
185+
(:module "lisp-reference-test"
186186
:serial t
187187
:pathname ""
188188
:depends-on ("descriptor-extensions")
@@ -191,7 +191,7 @@
191191
:depends-on ("package_test2"))
192192
(:protobuf-source-file "forward_reference"
193193
:proto-search-path ("../" "../google/protobuf/"))
194-
(:file "lisp-reference-tests")))
194+
(:file "lisp-reference-test")))
195195

196196
(:module "nested-extend-test"
197197
:serial t
@@ -269,11 +269,11 @@
269269
:depends-on ("google-tests-proto")
270270
:components ((:file "packed-test")))
271271

272-
(:module "serialize-object-to-bytes-test"
272+
(:module "serialize-to-bytes-test"
273273
:serial t
274274
:pathname ""
275-
:depends-on ("object-level-tests")
276-
:components ((:file "serialize-object-to-bytes")))
275+
:depends-on ("object-level-test")
276+
:components ((:file "serialize-to-bytes-test")))
277277

278278
(:module "text-format-test"
279279
:serial t
@@ -300,24 +300,24 @@
300300
:pathname ""
301301
:components ((:file "well-known-types-test")))
302302

303-
(:module "google-tests"
303+
(:module "google-test"
304304
:serial t
305305
:pathname ""
306-
:depends-on ("root-suite" "brown-tests" "google-tests-proto")
306+
:depends-on ("root-suite" "brown-test" "google-tests-proto")
307307
:components
308-
((:file "full-tests")
308+
((:file "full-test")
309309
(:static-file "golden_message.data")
310310
(:static-file "golden_packed_message.data")))
311311

312312
;; ABCL is slow, these tests take to long.
313313
#-abcl
314-
(:module "timing-tests"
314+
(:module "timing-test"
315315
:serial t
316316
:pathname ""
317317
:components ((:protobuf-source-file "proto3")
318318
(:protobuf-source-file "serialization")
319-
(:file "timing-tests")))
320-
(:module "vector-tests"
319+
(:file "timing-test")))
320+
(:module "vector-test"
321321
:serial t
322322
:pathname ""
323323
:depends-on ("descriptor-extensions")

0 commit comments

Comments
 (0)