comparison src/hgrunner.h @ 691:5b3bcb2d0943

Update handling of auth extension load failures on Windows: hg itself is returning a successful error code, so we must check the output in the extension test phase. Also fix a failure & crash when trying to use fallback auth mechanism
author Chris Cannam
date Mon, 10 Dec 2018 12:03:04 +0000
parents ae67ea0af696
children
comparison
equal deleted inserted replaced
690:bfafe078df9a 691:5b3bcb2d0943
41 void requestAction(HgAction action); 41 void requestAction(HgAction action);
42 void killCurrentActions(); // kill anything running; clear the queue 42 void killCurrentActions(); // kill anything running; clear the queue
43 43
44 signals: 44 signals:
45 void commandStarting(HgAction action); 45 void commandStarting(HgAction action);
46 void commandCompleted(HgAction action, QString stdOut); 46 void commandCompleted(HgAction action, QString stdOut, QString stdErr);
47 void commandFailed(HgAction action, QString stdErr, QString stdOut); 47 void commandFailed(HgAction action, QString stdOut, QString stdErr);
48 48
49 /** 49 /**
50 * Emitted when the currently executing command is cancelled. Note 50 * Emitted when the currently executing command is cancelled. Note
51 * that this clears the queue completely, so all subsequent 51 * that this clears the queue completely, so all subsequent
52 * commands are also discarded. 52 * commands are also discarded.