summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2017-04-07 21:30:29 +0200
committerMurray Cumming <murrayc@murrayc.com>2017-04-07 21:30:29 +0200
commitbbce2bfd10d304c4748fe246fb08fbefe686d6b9 (patch)
treec7116e37b4426716e8450547c14261275684aedf /tests
parent17ce66a0155dc7a310ff32c8d9b0904902961bc9 (diff)
downloadglibmm-bbce2bfd10d304c4748fe246fb08fbefe686d6b9.tar.gz
tests: glibmm_value: Actually call the test function.
Diffstat (limited to 'tests')
-rw-r--r--tests/glibmm_value/main.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/glibmm_value/main.cc b/tests/glibmm_value/main.cc
index 515a79e2..29417abb 100644
--- a/tests/glibmm_value/main.cc
+++ b/tests/glibmm_value/main.cc
@@ -12,7 +12,7 @@ class Widget;
}
void
-some_method()
+test()
{
// custom copyable
Glib::Value<Foo> value_foo;
@@ -33,5 +33,7 @@ some_method()
//
int main() {
+ test();
+
return EXIT_SUCCESS;
}