search for: test_found

Displaying 2 results from an estimated 2 matches for "test_found".

Did you mean: last_found
2006 May 24
0
[tip] Test coverage
..."app/controllers/**/*.rb") unit_tests = Dir.glob("test/unit/**/*.rb") functional_tests = Dir.glob("test/functional/**/*.rb") models.each do|model| original_dir, suspected_test = File.split(model) suspected_test.sub!(''.rb'', '''') test_found = !unit_tests.select{|s| s =~ /#{suspected_test}_test/}.empty? puts "unit test apparently missing for #{model}" unless test_found end controllers.each do|controller| original_dir, suspected_test = File.split(controller) suspected_test.sub!(''.rb'', '''...
2016 Sep 26
4
objc object file generated for gnustep runtime for ELF target is too big
...n(void) {         NSString *str = [NSString stringWithCString:"TEST"];         NSLog(@"test object %@", str);         return 0; } Compilation in xcode's clang xcrun -sdk iphoneos clang -arch armv7s -mios-version-min=6.1 -c test_foundation.m -o test_foundation_apple.o gives following result: 1. object file has only 3156 bytes size 2. and in disassembler only main function 3. the final executable will be 49992 bytes size in this case But compilation in llvm's clang downloaded from http://llvm.org/releases/3.8.0/clang+ll...