aboutsummaryrefslogtreecommitdiffstats
path: root/Lisp/asdf/test/test1.asd
diff options
context:
space:
mode:
Diffstat (limited to 'Lisp/asdf/test/test1.asd')
-rw-r--r--Lisp/asdf/test/test1.asd12
1 files changed, 12 insertions, 0 deletions
diff --git a/Lisp/asdf/test/test1.asd b/Lisp/asdf/test/test1.asd
new file mode 100644
index 0000000..423d796
--- /dev/null
+++ b/Lisp/asdf/test/test1.asd
@@ -0,0 +1,12 @@
+;;; -*- Lisp -*-
+(asdf:defsystem test1
+ :components ((:file "file2" :in-order-to ((compile-op (load-op "file1"))))
+ (:file "file1")))
+
+#|
+1) from clean, check that all fasl files build and that some function
+ defined in the second file is present
+
+2) delete the second fasl file, and build again. do test 1 again and
+ also check the date on file1.fasl
+|#