Skip to content

Commit c42191e

Browse files
ViralBShahclaude
andcommitted
Filter sbt output in Makefile and remove deprecated showSuccess
- Pipe sbt output through grep '^scala,' to avoid sbt launcher messages and netlib warnings polluting the CSV - Redirect sbt stderr to /dev/null - Remove deprecated showSuccess setting that caused lint warning Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent b5f3af7 commit c42191e

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ benchmarks/java.csv: java/src/main/java/PerfBLAS.java
9898

9999
benchmarks/scala.csv: scala/src/main/scala/perf.scala scala/build.sbt
100100
cd scala
101-
@for t in $(ITERATIONS); do sbt --batch run; done >../$@
101+
@for t in $(ITERATIONS); do sbt --batch run 2>/dev/null | grep '^scala,'; done >../$@
102102

103103
benchmarks/rust.csv: rust/src/main.rs rust/src/util.rs rust/Cargo.toml
104104
cd rust

scala/build.sbt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ scalaVersion := "3.3.4"
44

55
libraryDependencies += "org.scalanlp" %% "breeze" % "2.1.0"
66

7-
showSuccess := false
8-
97
onLoadMessage := ""
108

119
logLevel := Level.Warn

0 commit comments

Comments
 (0)