diff --git a/bb.edn b/bb.edn index f8da4295..000a3ed5 100644 --- a/bb.edn +++ b/bb.edn @@ -42,6 +42,6 @@ libsci:compile-all {:doc "Compile libsci and the example C, C++ and rust programs to `libsci/target/`." :depends [libsci:compile libsci:compile-c - libsci:compile-cpp libsci:compile-rust]} + libsci:compile-cpp #_libsci:compile-rust]} libsci:test libsci-tasks/test}} diff --git a/libsci/bb/libsci_tasks.clj b/libsci/bb/libsci_tasks.clj index 5f9ce1fe..bd768e36 100644 --- a/libsci/bb/libsci_tasks.clj +++ b/libsci/bb/libsci_tasks.clj @@ -147,7 +147,7 @@ (let [{:keys [out]} (p/shell shell-opts "libsci/target/from_cpp \"(+ 1 2)\"")] (is (= (str/trim out) "3")))) - (testing "rust program" + #_(testing "rust program" (let [{:keys [out]} (p/shell shell-opts "libsci/target/from-rust \"(+ 1 2)\"")] (is (= (str/trim out) "3"))))))