Update-Installer/src/tests/new_app.cpp
Robert Knight 214814dbbc Add a basic test of the updater for the non-elevated case under Linux
This test compiles two 'versions' of an application,
then runs a script which creates an install directory containing
the 'old' app and a directory containing a file_list.xml update script,
a copy of the updater and a zip file containing the 'new' app.
The script then runs the updater, then runs the installed app
and checks that it is the new version.
2011-08-21 22:07:46 +01:00

8 lines
105 B
C++

#include <iostream>
int main(int,char**)
{
std::cout << "new app starting" << std::endl;
return 0;
}