aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--test/mkmf/test_have_macro.rb2
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 178df28ada..ba0a4bdb5b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sun Mar 24 02:14:53 2013 Tanaka Akira <akr@fsij.org>
+
+ * test/mkmf/test_have_macro.rb: remove temporally files in the tests.
+
Sat Mar 23 23:50:04 2013 NARUSE, Yui <naruse@ruby-lang.org>
* addr2line.c (kprintf): added from FreeBSD libstand's printf.
diff --git a/test/mkmf/test_have_macro.rb b/test/mkmf/test_have_macro.rb
index 735a57c093..5ee953c68f 100644
--- a/test/mkmf/test_have_macro.rb
+++ b/test/mkmf/test_have_macro.rb
@@ -16,6 +16,7 @@ class TestMkmf
tmp.close
base = File.basename(tmp.path)
assert_equal(true, have_macro(MACRO_NAME, base, "-I."), MKMFLOG)
+ tmp.close(true)
end
end
@@ -29,6 +30,7 @@ class TestMkmf
tmp.close
base = File.basename(tmp.path)
assert_equal(false, have_macro(MACRO_NAME, base, "-I."), MKMFLOG)
+ tmp.close(true)
end
end
end