浏览代码

Merge pull request #438 from rleigh-dundee/msbuild-error

test: Don't use 'Error:' or 'error:' in test output #438
Christophe R 10 年之前
父节点
当前提交
45f8edf2bc
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      test/gtx/gtx_integer.cpp

+ 2 - 2
test/gtx/gtx_integer.cpp

@@ -63,10 +63,10 @@ int test_log2()
 		Error += glm::abs(double(A) - B) <= 24 ? 0 : 1;
 		Error += glm::abs(double(A) - B) <= 24 ? 0 : 1;
 		assert(!Error);
 		assert(!Error);
 
 
-		printf("Log2(%d) Error: %d, %d\n", 1 << i, A, B);
+		printf("Log2(%d) error A=%d, B=%d\n", 1 << i, A, B);
 	}
 	}
 
 
-	printf("log2 error: %d\n", Error);
+	printf("log2 error=%d\n", Error);
 
 
 	return Error;
 	return Error;
 }
 }