mirror of
https://github.com/etlegacy/Update-Installer.git
synced 2025-02-15 16:11:11 +00:00
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.
8 lines
105 B
C++
8 lines
105 B
C++
#include <iostream>
|
|
|
|
int main(int,char**)
|
|
{
|
|
std::cout << "new app starting" << std::endl;
|
|
return 0;
|
|
}
|
|
|