Commit 437dabf0 authored by limingbo's avatar limingbo

test

parent fc12d889
......@@ -37,6 +37,11 @@ int main(int argc, char *argv[])
vector<string> crossTasks;
getCrossTasks(activeTraces, crossTasks);
sort(crossTasks.begin(), crossTasks.end(),
[](const string& query, const string& target) {
return stoi(boost::filesystem::path(query).filename().string()) >
stoi(boost::filesystem::path(target).filename().string());
});
for(string task : crossTasks){
LOG(INFO) << "cross task chekc in: " << task;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment