Add simple soft-panic test

pull/9/head
Andre Richter 6 years ago
parent 3e10cd52a1
commit 83fdecc647
No known key found for this signature in database
GPG Key ID: 2116C1AB102F615E

@ -0,0 +1,13 @@
#!/usr/bin/env ruby
crates = Dir["**/Cargo.toml"].sort!
crates.each do |x|
next if x.include?('raspi3_boot')
x = File.dirname(x)
puts "\n" + x.to_s + ':'
Dir.chdir(x) do
system('make nm | grep panic_fmt')
end
end
Loading…
Cancel
Save