summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorCarlos Garnacho <carlosg@gnome.org>2017-10-20 01:11:49 +0200
committerCarlos Garnacho <carlosg@gnome.org>2017-11-14 22:45:26 +0100
commitab8307325b6850f8c4c38d0f294c13304e95a4a0 (patch)
treeae586a55396402f8d9fc5f84b585a4eb3e2dc1aa /tests
parent3bc295d241005188823e5ce28de8e68b2622b47c (diff)
downloadtracker-ab8307325b6850f8c4c38d0f294c13304e95a4a0.tar.gz
tests: Minor update to TrackerFileNotifier test
Because the way the file is created, we will get a create and an update here. TrackerMonitor won't merge those together anymore, but TrackerMinerFS will, so just acknowledge it's expected in this test.
Diffstat (limited to 'tests')
-rw-r--r--tests/libtracker-miner/tracker-file-notifier-test.c3
-rw-r--r--tests/libtracker-miner/tracker-monitor-test.c3
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/libtracker-miner/tracker-file-notifier-test.c b/tests/libtracker-miner/tracker-file-notifier-test.c
index 167582406..fd8264467 100644
--- a/tests/libtracker-miner/tracker-file-notifier-test.c
+++ b/tests/libtracker-miner/tracker-file-notifier-test.c
@@ -669,7 +669,8 @@ test_file_notifier_monitor_updates_non_recursive (TestCommonContext *fixture,
};
FilesystemOperation expected_results2[] = {
{ OPERATION_UPDATE, "non-recursive/bbb", NULL },
- { OPERATION_CREATE, "non-recursive/ccc", NULL }
+ { OPERATION_CREATE, "non-recursive/ccc", NULL },
+ { OPERATION_UPDATE, "non-recursive/ccc", NULL }
};
FilesystemOperation expected_results3[] = {
{ OPERATION_DELETE, "non-recursive/folder", NULL },
diff --git a/tests/libtracker-miner/tracker-monitor-test.c b/tests/libtracker-miner/tracker-monitor-test.c
index 3ba9412d7..2e386931f 100644
--- a/tests/libtracker-miner/tracker-monitor-test.c
+++ b/tests/libtracker-miner/tracker-monitor-test.c
@@ -1495,8 +1495,7 @@ test_monitor_directory_event_moved_to_monitored_after_file_create (TrackerMonito
/* Get events in the file in source dir */
file_events = GPOINTER_TO_UINT (g_hash_table_lookup (fixture->events, file_in_source_dir));
- /* Fail if we got ANY signal != CREATED (we created the file while monitoring) */
- g_assert_cmpuint ((file_events & MONITOR_SIGNAL_ITEM_UPDATED), ==, 0);
+ /* Fail if we got ANY signal != CREATED/UPDATED (we created the file while monitoring) */
g_assert_cmpuint ((file_events & MONITOR_SIGNAL_ITEM_ATTRIBUTE_UPDATED), ==, 0);
g_assert_cmpuint ((file_events & MONITOR_SIGNAL_ITEM_DELETED), ==, 0);
g_assert_cmpuint ((file_events & MONITOR_SIGNAL_ITEM_MOVED_FROM), ==, 0);